2022-02-19 21:42:10 -07:00
|
|
|
version: "3.8"
|
2022-02-03 13:42:27 -07:00
|
|
|
|
2023-11-09 19:43:21 -07:00
|
|
|
name: immich
|
|
|
|
|
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-05-30 18:53:24 -07:00
|
|
|
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
|
2023-11-09 19:43:21 -07:00
|
|
|
command: [ "start.sh", "immich" ]
|
2022-02-03 13:42:27 -07:00
|
|
|
volumes:
|
2022-02-11 21:23:06 -07:00
|
|
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
2023-10-02 18:50:27 -07:00
|
|
|
- /etc/localtime:/etc/localtime:ro
|
2022-02-03 13:42:27 -07:00
|
|
|
env_file:
|
|
|
|
- .env
|
|
|
|
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-05-30 18:53:24 -07:00
|
|
|
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
|
2023-08-01 18:56:10 -07:00
|
|
|
# extends:
|
|
|
|
# file: hwaccel.yml
|
|
|
|
# service: hwaccel
|
2023-11-09 19:43:21 -07:00
|
|
|
command: [ "start.sh", "microservices" ]
|
2022-06-11 14:12:06 -07:00
|
|
|
volumes:
|
|
|
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
2023-10-02 18:50:27 -07:00
|
|
|
- /etc/localtime:/etc/localtime:ro
|
2022-06-11 14:12:06 -07:00
|
|
|
env_file:
|
|
|
|
- .env
|
|
|
|
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-05-30 18:53:24 -07:00
|
|
|
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
|
2022-03-27 12:58:54 -07:00
|
|
|
volumes:
|
2023-02-18 08:13:37 -07:00
|
|
|
- model-cache:/cache
|
2022-03-27 12:58:54 -07:00
|
|
|
env_file:
|
|
|
|
- .env
|
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-05-30 18:53:24 -07:00
|
|
|
image: ghcr.io/immich-app/immich-web:${IMMICH_VERSION:-release}
|
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
|
2023-06-18 18:51:46 -07:00
|
|
|
image: typesense/typesense:0.24.1@sha256:9bcff2b829f12074426ca044b56160ca9d777a0c488303469143dd9f8259d4dd
|
2023-03-02 19:47:08 -07:00
|
|
|
environment:
|
|
|
|
- TYPESENSE_API_KEY=${TYPESENSE_API_KEY}
|
|
|
|
- TYPESENSE_DATA_DIR=/data
|
2023-08-18 07:25:52 -07:00
|
|
|
# remove this to get debug messages
|
|
|
|
- GLOG_minloglevel=1
|
2023-03-02 19:47:08 -07:00
|
|
|
volumes:
|
|
|
|
- tsdata:/data
|
2023-03-21 19:41:19 -07:00
|
|
|
restart: always
|
2023-03-02 19:47:08 -07:00
|
|
|
|
2022-02-03 13:42:27 -07:00
|
|
|
redis:
|
|
|
|
container_name: immich_redis
|
2023-11-11 17:58:01 -07:00
|
|
|
image: redis:6.2-alpine@sha256:3995fe6ea6a619313e31046bd3c8643f9e70f8f2b294ff82659d409b47d06abb
|
2022-05-21 00:23:55 -07:00
|
|
|
restart: always
|
2022-02-03 13:42:27 -07:00
|
|
|
|
|
|
|
database:
|
|
|
|
container_name: immich_postgres
|
2023-06-18 18:51:46 -07:00
|
|
|
image: postgres:14-alpine@sha256:28407a9961e76f2d285dc6991e8e48893503cc3836a4755bbc2d40bcc272a441
|
2022-02-03 13:42:27 -07:00
|
|
|
env_file:
|
|
|
|
- .env
|
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
|
|
|
POSTGRES_USER: ${DB_USERNAME}
|
|
|
|
POSTGRES_DB: ${DB_DATABASE_NAME}
|
|
|
|
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-05-30 18:53:24 -07:00
|
|
|
image: ghcr.io/immich-app/immich-proxy:${IMMICH_VERSION:-release}
|
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
|
|
|
depends_on:
|
2022-05-08 05:07:58 -07:00
|
|
|
- immich-server
|
2023-06-20 06:46:48 -07:00
|
|
|
- immich-web
|
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:
|