2022-02-20 04:42:10 +00:00
|
|
|
version: "3.8"
|
2022-02-03 20:42:27 +00:00
|
|
|
|
2023-11-18 17:43:10 +00:00
|
|
|
#
|
|
|
|
# WARNING: Make sure to use the docker-compose.yml of the current release:
|
|
|
|
#
|
|
|
|
# https://github.com/immich-app/immich/releases/latest/download/docker-compose.yml
|
|
|
|
#
|
2023-11-18 17:49:30 +00:00
|
|
|
# The compose file on main may not be compatible with the latest release.
|
2023-11-18 17:43:10 +00:00
|
|
|
#
|
|
|
|
|
2023-11-10 02:43:21 +00:00
|
|
|
name: immich
|
|
|
|
|
2022-02-03 20:42:27 +00:00
|
|
|
services:
|
2022-05-08 12:07:58 +00:00
|
|
|
immich-server:
|
2022-12-30 16:30:28 +00:00
|
|
|
container_name: immich_server
|
2023-05-31 01:53:24 +00:00
|
|
|
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
|
2023-11-10 02:43:21 +00:00
|
|
|
command: [ "start.sh", "immich" ]
|
2022-02-03 20:42:27 +00:00
|
|
|
volumes:
|
2022-02-12 04:23:06 +00:00
|
|
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
2023-10-03 01:50:27 +00:00
|
|
|
- /etc/localtime:/etc/localtime:ro
|
2022-02-03 20:42:27 +00:00
|
|
|
env_file:
|
|
|
|
- .env
|
2023-11-18 04:13:36 +00:00
|
|
|
ports:
|
|
|
|
- 2283:3001
|
2022-02-03 20:42:27 +00:00
|
|
|
depends_on:
|
|
|
|
- redis
|
|
|
|
- database
|
2023-03-03 02:47:08 +00:00
|
|
|
- typesense
|
2022-05-21 07:23:55 +00:00
|
|
|
restart: always
|
2022-02-03 20:42:27 +00:00
|
|
|
|
2022-05-08 12:07:58 +00:00
|
|
|
immich-microservices:
|
2022-12-30 16:30:28 +00:00
|
|
|
container_name: immich_microservices
|
2023-05-31 01:53:24 +00:00
|
|
|
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
|
2023-08-02 01:56:10 +00:00
|
|
|
# extends:
|
|
|
|
# file: hwaccel.yml
|
|
|
|
# service: hwaccel
|
2023-11-10 02:43:21 +00:00
|
|
|
command: [ "start.sh", "microservices" ]
|
2022-06-11 21:12:06 +00:00
|
|
|
volumes:
|
|
|
|
- ${UPLOAD_LOCATION}:/usr/src/app/upload
|
2023-10-03 01:50:27 +00:00
|
|
|
- /etc/localtime:/etc/localtime:ro
|
2022-06-11 21:12:06 +00:00
|
|
|
env_file:
|
|
|
|
- .env
|
|
|
|
depends_on:
|
|
|
|
- redis
|
|
|
|
- database
|
2023-03-03 02:47:08 +00:00
|
|
|
- typesense
|
2022-06-11 21:12:06 +00:00
|
|
|
restart: always
|
|
|
|
|
|
|
|
immich-machine-learning:
|
2022-12-30 16:30:28 +00:00
|
|
|
container_name: immich_machine_learning
|
2023-05-31 01:53:24 +00:00
|
|
|
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
|
2022-03-27 19:58:54 +00:00
|
|
|
volumes:
|
2023-02-18 15:13:37 +00:00
|
|
|
- model-cache:/cache
|
2022-03-27 19:58:54 +00:00
|
|
|
env_file:
|
|
|
|
- .env
|
2022-05-21 07:23:55 +00:00
|
|
|
restart: always
|
|
|
|
|
2023-03-03 02:47:08 +00:00
|
|
|
typesense:
|
|
|
|
container_name: immich_typesense
|
2023-06-19 01:51:46 +00:00
|
|
|
image: typesense/typesense:0.24.1@sha256:9bcff2b829f12074426ca044b56160ca9d777a0c488303469143dd9f8259d4dd
|
2023-03-03 02:47:08 +00:00
|
|
|
environment:
|
|
|
|
- TYPESENSE_API_KEY=${TYPESENSE_API_KEY}
|
|
|
|
- TYPESENSE_DATA_DIR=/data
|
2023-08-18 14:25:52 +00:00
|
|
|
# remove this to get debug messages
|
|
|
|
- GLOG_minloglevel=1
|
2023-03-03 02:47:08 +00:00
|
|
|
volumes:
|
|
|
|
- tsdata:/data
|
2023-03-22 02:41:19 +00:00
|
|
|
restart: always
|
2023-03-03 02:47:08 +00:00
|
|
|
|
2022-02-03 20:42:27 +00:00
|
|
|
redis:
|
|
|
|
container_name: immich_redis
|
2023-12-01 19:25:21 +00:00
|
|
|
image: redis:6.2-alpine@sha256:60e49e22fa5706cd8df7d5e0bc50ee9bab7c608039fa653c4d961014237cca46
|
2022-05-21 07:23:55 +00:00
|
|
|
restart: always
|
2022-02-03 20:42:27 +00:00
|
|
|
|
|
|
|
database:
|
|
|
|
container_name: immich_postgres
|
2023-12-02 18:54:30 +00:00
|
|
|
image: postgres:14-alpine@sha256:6a0e35296341e676fe6bd8d236c72afffe2dfe3d7eb9c2405c0f3fc04500cd07
|
2022-02-03 20:42:27 +00: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 13:42:27 +00:00
|
|
|
restart: always
|
2022-06-11 21:12:06 +00:00
|
|
|
|
2022-02-03 20:42:27 +00:00
|
|
|
volumes:
|
2022-06-11 21:12:06 +00:00
|
|
|
pgdata:
|
2023-02-18 15:13:37 +00:00
|
|
|
model-cache:
|
2023-03-03 02:47:08 +00:00
|
|
|
tsdata:
|