Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ COMPOSE_SERVER_DOMAIN=demo.os2display.dk
COMPOSE_ADMIN_CLIENT_PATH=/admin
COMPOSE_SCREEN_CLIENT_PATH=/screen

COMPOSE_VERSION=latest
COMPOSE_VERSION_API=latest
COMPOSE_VERSION_ADMIN=latest
COMPOSE_VERSION_CLIENT=latest

##### api [itkdev/os2display-api-service] #####

Expand Down
8 changes: 4 additions & 4 deletions docker-compose.server.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ networks:

services:
api:
image: itkdev/os2display-api-service:${COMPOSE_VERSION}
image: itkdev/os2display-api-service:${COMPOSE_VERSION_API}
restart: unless-stopped
networks:
- app
Expand Down Expand Up @@ -62,7 +62,7 @@ services:
- ./media:/var/www/html/public/media:rw

nginx-api:
image: itkdev/os2display-api-service-nginx:${COMPOSE_VERSION}
image: itkdev/os2display-api-service-nginx:${COMPOSE_VERSION_API}
restart: unless-stopped
networks:
- app
Expand Down Expand Up @@ -94,7 +94,7 @@ services:
- ./media:/var/www/html/public/media:rw

admin:
image: itkdev/os2display-admin-client:${COMPOSE_VERSION}
image: itkdev/os2display-admin-client:${COMPOSE_VERSION_ADMIN}
restart: unless-stopped
networks:
- app
Expand All @@ -119,7 +119,7 @@ services:
# - "traefik.http.routers.${COMPOSE_PROJECT_NAME}.middlewares=ITKBasicAuth@file"

client:
image: itkdev/os2display-client:${COMPOSE_VERSION}
image: itkdev/os2display-client:${COMPOSE_VERSION_CLIENT}
restart: unless-stopped
networks:
- app
Expand Down