|
@@ -3,7 +3,7 @@ version: "3.8"
|
|
|
services:
|
|
|
immich-server:
|
|
|
container_name: immich_server
|
|
|
- image: ghcr.io/immich-app/immich-server:release
|
|
|
+ image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
|
|
|
command: ["start-server.sh"]
|
|
|
volumes:
|
|
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
|
@@ -17,7 +17,7 @@ services:
|
|
|
|
|
|
immich-microservices:
|
|
|
container_name: immich_microservices
|
|
|
- image: ghcr.io/immich-app/immich-server:release
|
|
|
+ image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
|
|
|
command: ["start-microservices.sh"]
|
|
|
volumes:
|
|
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
|
@@ -31,7 +31,7 @@ services:
|
|
|
|
|
|
immich-machine-learning:
|
|
|
container_name: immich_machine_learning
|
|
|
- image: ghcr.io/immich-app/immich-machine-learning:release
|
|
|
+ image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
|
|
|
volumes:
|
|
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
|
|
- model-cache:/cache
|
|
@@ -41,7 +41,7 @@ services:
|
|
|
|
|
|
immich-web:
|
|
|
container_name: immich_web
|
|
|
- image: ghcr.io/immich-app/immich-web:release
|
|
|
+ image: ghcr.io/immich-app/immich-web:${IMMICH_VERSION:-release}
|
|
|
env_file:
|
|
|
- .env
|
|
|
restart: always
|
|
@@ -79,7 +79,7 @@ services:
|
|
|
|
|
|
immich-proxy:
|
|
|
container_name: immich_proxy
|
|
|
- image: ghcr.io/immich-app/immich-proxy:release
|
|
|
+ image: ghcr.io/immich-app/immich-proxy:${IMMICH_VERSION:-release}
|
|
|
environment:
|
|
|
# Make sure these values get passed through from the env file
|
|
|
- IMMICH_SERVER_URL
|