mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
636f5fb933
Removed deprecated version line in docker compose files
99 lines
2.7 KiB
YAML
99 lines
2.7 KiB
YAML
name: immich-prod
|
|
|
|
x-server-build: &server-common
|
|
image: immich-server:latest
|
|
build:
|
|
context: ../
|
|
dockerfile: server/Dockerfile
|
|
volumes:
|
|
- ${UPLOAD_LOCATION}/photos:/usr/src/app/upload
|
|
- /etc/localtime:/etc/localtime:ro
|
|
env_file:
|
|
- .env
|
|
restart: always
|
|
|
|
services:
|
|
immich-server:
|
|
container_name: immich_server
|
|
command: ['start.sh', 'immich']
|
|
<<: *server-common
|
|
ports:
|
|
- 2283:3001
|
|
depends_on:
|
|
- redis
|
|
- database
|
|
|
|
immich-microservices:
|
|
container_name: immich_microservices
|
|
command: ['start.sh', 'microservices']
|
|
<<: *server-common
|
|
# extends:
|
|
# file: hwaccel.transcoding.yml
|
|
# service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
|
|
depends_on:
|
|
- redis
|
|
- database
|
|
- immich-server
|
|
|
|
immich-machine-learning:
|
|
container_name: immich_machine_learning
|
|
image: immich-machine-learning:latest
|
|
# extends:
|
|
# file: hwaccel.ml.yml
|
|
# service: cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference
|
|
build:
|
|
context: ../machine-learning
|
|
dockerfile: Dockerfile
|
|
args:
|
|
- DEVICE=cpu # set to one of [armnn, cuda, openvino, openvino-wsl] for accelerated inference
|
|
volumes:
|
|
- model-cache:/cache
|
|
env_file:
|
|
- .env
|
|
restart: always
|
|
|
|
redis:
|
|
container_name: immich_redis
|
|
image: redis:6.2-alpine@sha256:3fcb624d83a9c478357f16dc173c58ded325ccc5fd2a4375f3916c04cc579f70
|
|
restart: always
|
|
|
|
database:
|
|
container_name: immich_postgres
|
|
image: tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
|
POSTGRES_USER: ${DB_USERNAME}
|
|
POSTGRES_DB: ${DB_DATABASE_NAME}
|
|
volumes:
|
|
- ${UPLOAD_LOCATION}/postgres:/var/lib/postgresql/data
|
|
ports:
|
|
- 5432:5432
|
|
|
|
# set IMMICH_METRICS=true in .env to enable metrics
|
|
immich-prometheus:
|
|
container_name: immich_prometheus
|
|
ports:
|
|
- 9090:9090
|
|
image: prom/prometheus@sha256:5ccad477d0057e62a7cd1981ffcc43785ac10c5a35522dc207466ff7e7ec845f
|
|
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.4.1-ubuntu@sha256:65e0e7d0f0b001cb0478bce5093bff917677dc308dd27a0aa4b3ac38e4fd877c
|
|
volumes:
|
|
- grafana-data:/var/lib/grafana
|
|
|
|
volumes:
|
|
model-cache:
|
|
prometheus-data:
|
|
grafana-data:
|