From 904de1acd264fb6ba84a387875c3c6d7473610c7 Mon Sep 17 00:00:00 2001 From: Micha Date: Thu, 26 Mar 2026 13:01:02 +0000 Subject: [PATCH] Version 1 --- apps/immich-server/docker-compose.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 apps/immich-server/docker-compose.yml diff --git a/apps/immich-server/docker-compose.yml b/apps/immich-server/docker-compose.yml new file mode 100644 index 0000000..f5cfb40 --- /dev/null +++ b/apps/immich-server/docker-compose.yml @@ -0,0 +1,27 @@ +version: "3.9" + +services: + immich-server: + image: ghcr.io/immich-app/immich-server:release + container_name: immich_server + restart: unless-stopped + + environment: + DB_HOSTNAME: database + DB_USERNAME: immich + DB_PASSWORD: ${IMMICH_DB_PASSWORD} + DB_DATABASE_NAME: immich + REDIS_HOSTNAME: redis + + volumes: + - /mnt/user/photos/immich:/usr/src/app/upload + + networks: + - immich_default + + security_opt: + - no-new-privileges:true + +networks: + immich_default: + external: true \ No newline at end of file