2022-02-19 22:42:10 -06:00
|
|
|
version: "3.8"
|
2022-02-03 14:42:27 -06:00
|
|
|
|
|
|
|
services:
|
2022-05-08 07:07:58 -05:00
|
|
|
immich-server:
|
2022-12-30 17:30:28 +01:00
|
|
|
container_name: immich_server
|
2023-03-16 15:06:14 +01:00
|
|
|
image: ghcr.io/immich-app/immich-server:release
|
2023-03-02 23:33:07 -06:00
|
|
|
entrypoint: [ "/bin/sh", "./start-server.sh" ]
|
2022-02-03 14:42:27 -06:00
|
|
|
volumes:
|
2022-02-11 22:23:06 -06:00
|
|
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
2022-02-03 14:42:27 -06:00
|
|
|
env_file:
|
|
|
|
- .env
|
2022-03-28 15:21:15 -05:00
|
|
|
environment:
|
|
|
|
- NODE_ENV=production
|
2022-02-03 14:42:27 -06:00
|
|
|
depends_on:
|
|
|
|
- redis
|
|
|
|
- database
|
2023-03-02 21:47:08 -05:00
|
|
|
- typesense
|
2022-05-21 02:23:55 -05:00
|
|
|
restart: always
|
2022-02-03 14:42:27 -06:00
|
|
|
|
2022-05-08 07:07:58 -05:00
|
|
|
immich-microservices:
|
2022-12-30 17:30:28 +01:00
|
|
|
container_name: immich_microservices
|
2023-03-16 15:06:14 +01:00
|
|
|
image: ghcr.io/immich-app/immich-server:release
|
2023-03-02 23:33:07 -06:00
|
|
|
entrypoint: [ "/bin/sh", "./start-microservices.sh" ]
|
2022-06-11 16:12:06 -05:00
|
|
|
volumes:
|
|
|
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
|
|
|
env_file:
|
|
|
|
- .env
|
|
|
|
environment:
|
|
|
|
- NODE_ENV=production
|
|
|
|
depends_on:
|
|
|
|
- redis
|
|
|
|
- database
|
2023-03-02 21:47:08 -05:00
|
|
|
- typesense
|
2022-06-11 16:12:06 -05:00
|
|
|
restart: always
|
|
|
|
|
|
|
|
immich-machine-learning:
|
2022-12-30 17:30:28 +01:00
|
|
|
container_name: immich_machine_learning
|
2023-03-16 15:06:14 +01:00
|
|
|
image: ghcr.io/immich-app/immich-machine-learning:release
|
2022-03-27 14:58:54 -05:00
|
|
|
volumes:
|
|
|
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
2023-02-18 09:13:37 -06:00
|
|
|
- model-cache:/cache
|
2022-03-27 14:58:54 -05:00
|
|
|
env_file:
|
|
|
|
- .env
|
2022-03-28 15:21:15 -05:00
|
|
|
environment:
|
|
|
|
- NODE_ENV=production
|
2022-05-21 02:23:55 -05:00
|
|
|
restart: always
|
|
|
|
|
|
|
|
immich-web:
|
2022-12-30 17:30:28 +01:00
|
|
|
container_name: immich_web
|
2023-03-16 15:06:14 +01:00
|
|
|
image: ghcr.io/immich-app/immich-web:release
|
2023-03-02 23:33:07 -06:00
|
|
|
entrypoint: [ "/bin/sh", "./entrypoint.sh" ]
|
2022-05-21 02:23:55 -05:00
|
|
|
env_file:
|
|
|
|
- .env
|
|
|
|
restart: always
|
|
|
|
|
2023-03-02 21:47:08 -05:00
|
|
|
typesense:
|
|
|
|
container_name: immich_typesense
|
|
|
|
image: typesense/typesense:0.24.0
|
|
|
|
environment:
|
|
|
|
- TYPESENSE_API_KEY=${TYPESENSE_API_KEY}
|
|
|
|
- TYPESENSE_DATA_DIR=/data
|
2023-03-02 23:33:07 -06:00
|
|
|
logging:
|
|
|
|
driver: none
|
2023-03-02 21:47:08 -05:00
|
|
|
volumes:
|
|
|
|
- tsdata:/data
|
|
|
|
|
2022-02-03 14:42:27 -06:00
|
|
|
redis:
|
|
|
|
container_name: immich_redis
|
|
|
|
image: redis:6.2
|
2022-05-21 02:23:55 -05:00
|
|
|
restart: always
|
2022-02-03 14:42:27 -06:00
|
|
|
|
|
|
|
database:
|
|
|
|
container_name: immich_postgres
|
|
|
|
image: postgres:14
|
|
|
|
env_file:
|
|
|
|
- .env
|
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
|
|
|
POSTGRES_USER: ${DB_USERNAME}
|
|
|
|
POSTGRES_DB: ${DB_DATABASE_NAME}
|
|
|
|
PG_DATA: /var/lib/postgresql/data
|
|
|
|
volumes:
|
|
|
|
- pgdata:/var/lib/postgresql/data
|
2022-05-29 08:42:27 -05:00
|
|
|
restart: always
|
2022-06-11 16:12:06 -05:00
|
|
|
|
2022-06-30 03:24:55 +01:00
|
|
|
immich-proxy:
|
|
|
|
container_name: immich_proxy
|
2023-03-16 15:06:14 +01:00
|
|
|
image: ghcr.io/immich-app/immich-proxy:release
|
2022-11-09 03:11:32 -08:00
|
|
|
environment:
|
|
|
|
# Make sure these values get passed through from the env file
|
|
|
|
- IMMICH_SERVER_URL
|
|
|
|
- IMMICH_WEB_URL
|
2022-02-06 00:07:56 -06:00
|
|
|
ports:
|
2022-09-14 04:50:10 +02:00
|
|
|
- 2283:8080
|
2022-02-06 00:07:56 -06:00
|
|
|
logging:
|
|
|
|
driver: none
|
|
|
|
depends_on:
|
2022-05-08 07:07:58 -05:00
|
|
|
- immich-server
|
2022-05-21 02:23:55 -05:00
|
|
|
restart: always
|
2022-02-06 00:07:56 -06:00
|
|
|
|
2022-02-03 14:42:27 -06:00
|
|
|
volumes:
|
2022-06-11 16:12:06 -05:00
|
|
|
pgdata:
|
2023-02-18 09:13:37 -06:00
|
|
|
model-cache:
|
2023-03-02 21:47:08 -05:00
|
|
|
tsdata:
|