mirror of
https://github.com/Haxxnet/Compose-Examples
synced 2025-02-24 08:58:42 +00:00
Compare commits
No commits in common. "8b585c50a1f4e32fdd7306573e9879c84fea15f9" and "759c3348da76b37739a045fdb75c79b954d8c5df" have entirely different histories.
8b585c50a1
...
759c3348da
@ -13,8 +13,6 @@ services:
|
|||||||
- UID=1000
|
- UID=1000
|
||||||
- GID=1000
|
- GID=1000
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
|
||||||
- 4000:80
|
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: ['CMD', 'node', '/app/services/healthcheck']
|
test: ['CMD', 'node', '/app/services/healthcheck']
|
||||||
interval: 1m30s
|
interval: 1m30s
|
||||||
|
@ -6,8 +6,6 @@ services:
|
|||||||
container_name: homer
|
container_name: homer
|
||||||
volumes:
|
volumes:
|
||||||
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homer:/www/assets
|
- ${DOCKER_VOLUME_STORAGE:-/mnt/docker-volumes}/homer:/www/assets
|
||||||
ports:
|
|
||||||
- "8080:8080"
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
environment:
|
environment:
|
||||||
- UID=1000
|
- UID=1000
|
||||||
|
@ -5,11 +5,6 @@ DB_PASSWORD=MySecureDatabasePassword # change this
|
|||||||
DB_DATABASE_NAME=immich-psgdb
|
DB_DATABASE_NAME=immich-psgdb
|
||||||
DB_DATABASE_LOCATION=/mnt/docker-volumes/immich/database # change this
|
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
|
||||||
REDIS_HOSTNAME=immich-redis
|
REDIS_HOSTNAME=immich-redis
|
||||||
|
|
||||||
|
@ -14,7 +14,6 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- immich-redis
|
- immich-redis
|
||||||
- immich-database
|
- immich-database
|
||||||
- immich-typesense
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
#labels:
|
#labels:
|
||||||
# - "com.centurylinklabs.watchtower.enable=true"
|
# - "com.centurylinklabs.watchtower.enable=true"
|
||||||
@ -32,34 +31,23 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- immich-redis
|
- immich-redis
|
||||||
- immich-database
|
- immich-database
|
||||||
- immich-typesense
|
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
#labels:
|
#labels:
|
||||||
# - "com.centurylinklabs.watchtower.enable=true"
|
# - "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"
|
|
||||||
|
|
||||||
#immich-machine-learning:
|
#immich-machine-learning:
|
||||||
# image: altran1502/immich-machine-learning:release
|
# image: altran1502/immich-machine-learning:release
|
||||||
# container_name: immich-ml
|
# container_name: immich-ml
|
||||||
|
# entrypoint: ["/bin/sh", "./entrypoint.sh"]
|
||||||
# volumes:
|
# volumes:
|
||||||
# - ${UPLOAD_LOCATION}:/usr/src/app/upload
|
# - ${UPLOAD_LOCATION}:/usr/src/app/upload
|
||||||
# - model-cache:/cache
|
|
||||||
# env_file:
|
# env_file:
|
||||||
# - .env
|
# - .env
|
||||||
# environment:
|
# environment:
|
||||||
# - NODE_ENV=production
|
# - NODE_ENV=production
|
||||||
# restart: unless-stopped
|
# depends_on:
|
||||||
|
# - immich-database
|
||||||
|
# restart: always
|
||||||
# labels:
|
# labels:
|
||||||
# - "com.centurylinklabs.watchtower.enable=true"
|
# - "com.centurylinklabs.watchtower.enable=true"
|
||||||
|
|
||||||
@ -112,6 +100,3 @@ services:
|
|||||||
# # Part for local lan services only
|
# # Part for local lan services only
|
||||||
# - traefik.http.routers.immich.middlewares=local-ipwhitelist@file
|
# - traefik.http.routers.immich.middlewares=local-ipwhitelist@file
|
||||||
# - "com.centurylinklabs.watchtower.enable=true"
|
# - "com.centurylinklabs.watchtower.enable=true"
|
||||||
|
|
||||||
#volumes:
|
|
||||||
# model-cache:
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user