mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2025-10-28 17:20:08 +01:00
Compare commits
6 Commits
457af240a6
...
d1a71c1bce
| Author | SHA1 | Date | |
|---|---|---|---|
| d1a71c1bce | |||
| 0343cbcd5c | |||
| a56ea65901 | |||
| 5bbc64eeb4 | |||
| cc9445c83f | |||
| 5a8cfe278f |
@@ -12,15 +12,15 @@ name: immich
|
||||
services:
|
||||
immich-server:
|
||||
container_name: immich_server
|
||||
image: ${DOCKER_REGISTRY:-}ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
|
||||
image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
|
||||
extends:
|
||||
file: hwaccel.transcoding.yml
|
||||
service: ${HW_MODE1:-cpu} # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
|
||||
service: vaapi # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
|
||||
volumes:
|
||||
# Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
|
||||
- ${UPLOAD_LOCATION}:/data
|
||||
- /media/nas/nas-photo:/data2
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- /media/nas/nas-photo:/mnt/photos2
|
||||
env_file:
|
||||
- .env
|
||||
ports:
|
||||
@@ -28,7 +28,7 @@ services:
|
||||
depends_on:
|
||||
- redis
|
||||
- database
|
||||
restart: ${RESTART:-unless-stopped}
|
||||
restart: always
|
||||
healthcheck:
|
||||
disable: false
|
||||
labels:
|
||||
@@ -39,39 +39,38 @@ services:
|
||||
homepage.icon: ${APPNAME}.png
|
||||
homepage.name: Immich
|
||||
homepage.server: my-docker
|
||||
homepage.widget.key: ExipFjWSqRCCbCUiX5pJmZcMciTBTLMZcpKhRQA0
|
||||
homepage.widget.key: mdaRNyiY19w9YEz3MXT3fiPD9XH3CtQYRM26C0wZJM
|
||||
homepage.widget.type: ${APPNAME}
|
||||
homepage.widget.url: https://${APPNAME}.sectorq.eu
|
||||
homepage.widget.version: '2'
|
||||
wud.watch: true
|
||||
wud.watch.digest: true
|
||||
|
||||
immich-machine-learning:
|
||||
container_name: immich_machine_learning
|
||||
# For hardware acceleration, add one of -[armnn, cuda, rocm, openvino, rknn] to the image tag.
|
||||
# Example tag: ${IMMICH_VERSION:-release}-cuda
|
||||
image: ${DOCKER_REGISTRY:-}ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
|
||||
image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
|
||||
extends: # uncomment this section for hardware acceleration - see https://docs.immich.app/features/ml-hardware-acceleration
|
||||
file: hwaccel.ml.yml
|
||||
service: ${HW_MODE2:-cpu} # set to one of [armnn, cuda, rocm, openvino, openvino-wsl, rknn] for accelerated inference - use the `-wsl` version for WSL2 where applicable
|
||||
service: openvino # set to one of [armnn, cuda, rocm, openvino, openvino-wsl, rknn] for accelerated inference - use the `-wsl` version for WSL2 where applicable
|
||||
volumes:
|
||||
- model-cache:/cache
|
||||
env_file:
|
||||
- .env
|
||||
restart: ${RESTART:-unless-stopped}
|
||||
restart: always
|
||||
healthcheck:
|
||||
disable: false
|
||||
|
||||
redis:
|
||||
container_name: immich_redis
|
||||
image: ${DOCKER_REGISTRY:-}docker.io/valkey/valkey:8-bookworm
|
||||
image: docker.io/valkey/valkey:8-bookworm@sha256:fea8b3e67b15729d4bb70589eb03367bab9ad1ee89c876f54327fc7c6e618571
|
||||
healthcheck:
|
||||
test: redis-cli ping || exit 1
|
||||
restart: always
|
||||
|
||||
database:
|
||||
container_name: immich_postgres
|
||||
image: ${DOCKER_REGISTRY:-}ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0
|
||||
image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0@sha256:bcf63357191b76a916ae5eb93464d65c07511da41e3bf7a8416db519b40b1c23
|
||||
environment:
|
||||
POSTGRES_PASSWORD: ${DB_PASSWORD}
|
||||
POSTGRES_USER: ${DB_USERNAME}
|
||||
@@ -83,7 +82,7 @@ services:
|
||||
# Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file
|
||||
- ${DB_DATA_LOCATION}:/var/lib/postgresql/data
|
||||
shm_size: 128mb
|
||||
restart: ${RESTART:-unless-stopped}
|
||||
restart: always
|
||||
|
||||
volumes:
|
||||
model-cache:
|
||||
model-cache:
|
||||
@@ -1,9 +1,9 @@
|
||||
# You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables
|
||||
|
||||
# The location where your uploaded files are stored
|
||||
UPLOAD_LOCATION=./library
|
||||
UPLOAD_LOCATION=/share/docker_data/immich/library
|
||||
# The location where your database files are stored
|
||||
DB_DATA_LOCATION=./postgres
|
||||
DB_DATA_LOCATION=/share/docker_data/immich/db
|
||||
|
||||
# To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
|
||||
# TZ=Etc/UTC
|
||||
|
||||
Reference in New Issue
Block a user