2023-11-07 16:34:03 +00:00
|
|
|
# See:
|
|
|
|
# - https://immich.app/docs/developer/setup
|
|
|
|
# - https://immich.app/docs/developer/troubleshooting
|
|
|
|
|
2023-11-10 02:43:21 +00:00
|
|
|
name: immich-dev
|
|
|
|
|
2023-11-18 04:13:36 +00:00
|
|
|
x-server-build: &server-common
|
|
|
|
image: immich-server-dev:latest
|
|
|
|
build:
|
|
|
|
context: ../
|
|
|
|
dockerfile: server/Dockerfile
|
|
|
|
target: dev
|
2023-12-21 18:52:49 +00:00
|
|
|
restart: always
|
2023-11-18 04:13:36 +00:00
|
|
|
volumes:
|
|
|
|
- ../server:/usr/src/app
|
2024-01-12 12:36:27 +00:00
|
|
|
- ../open-api:/usr/src/open-api
|
2023-11-18 04:13:36 +00:00
|
|
|
- ${UPLOAD_LOCATION}/photos:/usr/src/app/upload
|
2023-12-29 18:41:33 +00:00
|
|
|
- ${UPLOAD_LOCATION}/photos/upload:/usr/src/app/upload/upload
|
2023-11-18 04:13:36 +00:00
|
|
|
- /usr/src/app/node_modules
|
|
|
|
- /etc/localtime:/etc/localtime:ro
|
|
|
|
env_file:
|
|
|
|
- .env
|
|
|
|
ulimits:
|
|
|
|
nofile:
|
|
|
|
soft: 1048576
|
|
|
|
hard: 1048576
|
|
|
|
|
2022-03-27 20:17:58 +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
|
2024-02-29 16:26:55 +00:00
|
|
|
command: ['/usr/src/app/bin/immich-dev', 'immich']
|
2023-11-18 04:13:36 +00:00
|
|
|
<<: *server-common
|
2022-10-29 01:35:14 +00:00
|
|
|
ports:
|
2023-01-19 15:45:37 +00:00
|
|
|
- 3001:3001
|
2022-10-29 01:35:14 +00:00
|
|
|
- 9230:9230
|
2022-03-27 20:17:58 +00:00
|
|
|
depends_on:
|
|
|
|
- redis
|
|
|
|
- database
|
|
|
|
|
2022-06-11 21:12:06 +00:00
|
|
|
immich-microservices:
|
2022-12-30 16:30:28 +00:00
|
|
|
container_name: immich_microservices
|
2024-02-29 16:26:55 +00:00
|
|
|
command: ['/usr/src/app/bin/immich-dev', 'microservices']
|
2023-11-18 04:13:36 +00:00
|
|
|
<<: *server-common
|
2023-08-02 01:56:10 +00:00
|
|
|
# extends:
|
2024-01-21 23:22:39 +00:00
|
|
|
# file: hwaccel.transcoding.yml
|
|
|
|
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
|
2023-04-28 18:21:01 +00:00
|
|
|
ports:
|
|
|
|
- 9231:9230
|
2022-03-27 20:17:58 +00:00
|
|
|
depends_on:
|
|
|
|
- database
|
2022-06-19 13:16:35 +00:00
|
|
|
- immich-server
|
2022-03-27 20:17:58 +00:00
|
|
|
|
2022-05-21 07:23:55 +00:00
|
|
|
immich-web:
|
2022-12-30 16:30:28 +00:00
|
|
|
container_name: immich_web
|
2024-01-22 15:59:35 +00:00
|
|
|
image: immich-web-dev:latest
|
2022-05-21 07:23:55 +00:00
|
|
|
build:
|
|
|
|
context: ../web
|
2024-02-29 16:26:55 +00:00
|
|
|
command: ['/usr/src/app/bin/immich-web']
|
2022-05-21 07:23:55 +00:00
|
|
|
env_file:
|
|
|
|
- .env
|
|
|
|
ports:
|
2023-11-18 04:13:36 +00:00
|
|
|
- 2283:3000
|
2022-05-21 07:23:55 +00:00
|
|
|
- 24678:24678
|
|
|
|
volumes:
|
|
|
|
- ../web:/usr/src/app
|
2024-01-12 12:36:27 +00:00
|
|
|
- ../open-api/:/usr/src/open-api/
|
2022-05-21 07:23:55 +00:00
|
|
|
- /usr/src/app/node_modules
|
2023-10-20 18:26:28 +00:00
|
|
|
ulimits:
|
|
|
|
nofile:
|
|
|
|
soft: 1048576
|
|
|
|
hard: 1048576
|
2023-07-05 20:23:23 +00:00
|
|
|
restart: unless-stopped
|
2022-07-26 17:28:07 +00:00
|
|
|
depends_on:
|
|
|
|
- immich-server
|
2022-03-27 20:17:58 +00:00
|
|
|
|
2023-10-03 18:06:08 +00:00
|
|
|
immich-machine-learning:
|
|
|
|
container_name: immich_machine_learning
|
|
|
|
image: immich-machine-learning-dev:latest
|
2024-01-21 23:22:39 +00:00
|
|
|
# extends:
|
|
|
|
# file: hwaccel.ml.yml
|
|
|
|
# service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference
|
2023-10-03 18:06:08 +00:00
|
|
|
build:
|
|
|
|
context: ../machine-learning
|
|
|
|
dockerfile: Dockerfile
|
2024-01-21 23:22:39 +00:00
|
|
|
args:
|
|
|
|
- DEVICE=cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference
|
2023-10-03 18:06:08 +00:00
|
|
|
ports:
|
|
|
|
- 3003:3003
|
|
|
|
volumes:
|
|
|
|
- ../machine-learning:/usr/src/app
|
|
|
|
- model-cache:/cache
|
|
|
|
env_file:
|
|
|
|
- .env
|
|
|
|
depends_on:
|
|
|
|
- database
|
|
|
|
restart: unless-stopped
|
|
|
|
|
2022-03-27 20:17:58 +00:00
|
|
|
redis:
|
|
|
|
container_name: immich_redis
|
2024-04-19 10:46:59 +00:00
|
|
|
image: redis:6.2-alpine@sha256:84882e87b54734154586e5f8abd4dce69fe7311315e2fc6d67c29614c8de2672
|
2022-03-27 20:17:58 +00:00
|
|
|
|
|
|
|
database:
|
|
|
|
container_name: immich_postgres
|
2024-02-07 02:51:22 +00:00
|
|
|
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
|
2022-03-27 20:17:58 +00:00
|
|
|
env_file:
|
|
|
|
- .env
|
|
|
|
environment:
|
|
|
|
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
|
|
|
POSTGRES_USER: ${DB_USERNAME}
|
|
|
|
POSTGRES_DB: ${DB_DATABASE_NAME}
|
2024-05-11 15:11:14 +00:00
|
|
|
POSTGRES_INITDB_ARGS: '--data-checksums'
|
2022-03-27 20:17:58 +00:00
|
|
|
volumes:
|
2023-10-05 14:16:23 +00:00
|
|
|
- ${UPLOAD_LOCATION}/postgres:/var/lib/postgresql/data
|
2022-03-27 20:17:58 +00:00
|
|
|
ports:
|
|
|
|
- 5432:5432
|
2024-05-11 15:11:14 +00:00
|
|
|
command: ["postgres", "-c" ,"shared_preload_libraries=vectors.so", "-c", 'search_path="$$user", public, vectors', "-c", "logging_collector=on", "-c", "max_wal_size=2GB", "-c", "shared_buffers=512MB", "-c", "wal_compression=on"]
|
|
|
|
|
2024-03-12 05:19:12 +00:00
|
|
|
# set IMMICH_METRICS=true in .env to enable metrics
|
|
|
|
# immich-prometheus:
|
|
|
|
# container_name: immich_prometheus
|
|
|
|
# ports:
|
|
|
|
# - 9090:9090
|
|
|
|
# image: prom/prometheus
|
|
|
|
# volumes:
|
|
|
|
# - ./prometheus.yml:/etc/prometheus/prometheus.yml
|
|
|
|
# - prometheus-data:/prometheus
|
|
|
|
|
|
|
|
# first login uses admin/admin
|
|
|
|
# add data source for http://immich-prometheus:9090 to get started
|
|
|
|
# immich-grafana:
|
|
|
|
# container_name: immich_grafana
|
|
|
|
# command: ['./run.sh', '-disable-reporting']
|
|
|
|
# ports:
|
|
|
|
# - 3000:3000
|
|
|
|
# image: grafana/grafana:10.3.3-ubuntu
|
|
|
|
# volumes:
|
|
|
|
# - grafana-data:/var/lib/grafana
|
2022-03-27 20:17:58 +00:00
|
|
|
|
|
|
|
volumes:
|
2023-02-18 15:13:37 +00:00
|
|
|
model-cache:
|
2024-03-12 05:19:12 +00:00
|
|
|
prometheus-data:
|
|
|
|
grafana-data:
|