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