mirror of
https://github.com/immich-app/immich.git
synced 2024-11-16 02:18:50 -07:00
8f57bfb496
* multiple fix * fix: album re-render * fix: revert re-render album * fix: linter --------- Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
78 lines
2.0 KiB
YAML
78 lines
2.0 KiB
YAML
version: "3.8"
|
|
|
|
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:51d6c56749a4243096327e3fb964a48ed92254357108449cb6e23999c37773c5
|
|
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
|
|
|
|
volumes:
|
|
model-cache:
|