Compare commits

..

No commits in common. "8b585c50a1f4e32fdd7306573e9879c84fea15f9" and "759c3348da76b37739a045fdb75c79b954d8c5df" have entirely different histories.

4 changed files with 4 additions and 28 deletions

View File

@ -13,8 +13,6 @@ services:
- UID=1000
- GID=1000
restart: unless-stopped
ports:
- 4000:80
healthcheck:
test: ['CMD', 'node', '/app/services/healthcheck']
interval: 1m30s

View File

@ -6,8 +6,6 @@ services:
container_name: homer
volumes:
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homer:/www/assets
ports:
- "8080:8080"
restart: unless-stopped
environment:
- UID=1000

View File

@ -5,11 +5,6 @@ DB_PASSWORD=MySecureDatabasePassword # change this
DB_DATABASE_NAME=immich-psgdb
DB_DATABASE_LOCATION=/mnt/docker-volumes/immich/database # change this
# Typesense
# TYPESENSE
TYPESENSE_API_KEY=E5B56F137D21231231 # change this to a secure random secret
TYPESENSE_LOCATION=/mnt/docker-volumes/immich/typesense # change this
# Redis
REDIS_HOSTNAME=immich-redis

View File

@ -14,7 +14,6 @@ services:
depends_on:
- immich-redis
- immich-database
- immich-typesense
restart: unless-stopped
#labels:
# - "com.centurylinklabs.watchtower.enable=true"
@ -32,19 +31,6 @@ services:
depends_on:
- immich-redis
- immich-database
- immich-typesense
restart: unless-stopped
#labels:
# - "com.centurylinklabs.watchtower.enable=true"
immich-typesense:
container_name: immich-typesense
image: typesense/typesense:0.24.0
environment:
- TYPESENSE_API_KEY=${TYPESENSE_API_KEY}
- TYPESENSE_DATA_DIR=/data
volumes:
- ${TYPESENSE_LOCATION}:/data
restart: unless-stopped
#labels:
# - "com.centurylinklabs.watchtower.enable=true"
@ -52,14 +38,16 @@ services:
#immich-machine-learning:
# image: altran1502/immich-machine-learning:release
# container_name: immich-ml
# entrypoint: ["/bin/sh", "./entrypoint.sh"]
# volumes:
# - ${UPLOAD_LOCATION}:/usr/src/app/upload
# - model-cache:/cache
# env_file:
# - .env
# environment:
# - NODE_ENV=production
# restart: unless-stopped
# depends_on:
# - immich-database
# restart: always
# labels:
# - "com.centurylinklabs.watchtower.enable=true"
@ -112,6 +100,3 @@ services:
# # Part for local lan services only
# - traefik.http.routers.immich.middlewares=local-ipwhitelist@file
# - "com.centurylinklabs.watchtower.enable=true"
#volumes:
# model-cache: