Immich #126
|
@ -3,6 +3,13 @@
|
|||
BIND_ADDRESS=127.0.0.1
|
||||
BIND_PORT=2283
|
||||
|
||||
# Available modes: shared, internal
|
||||
# Shared allows to publish database ports on host which may be useful for a backup
|
||||
# Internal mode leave the database inside the stack network
|
||||
#DB_MODE=shared
|
||||
#DB_EXTERNAL_ADDRESS=127.0.0.1
|
||||
#DB_EXTERNAL_PORT=5430
|
||||
|
||||
# The location where your uploaded files are stored
|
||||
UPLOAD_LOCATION=./library
|
||||
MODEL_CACHE_LOCATION=./model-cache
|
||||
|
|
|
@ -71,6 +71,9 @@ services:
|
|||
database:
|
||||
container_name: immich_postgres
|
||||
image: docker.io/tensorchord/pgvecto-rs:pg14-v0.2.0@sha256:90724186f0a3517cf6914295b5ab410db9ce23190a2d9d0b9dd6463e3fa298f0
|
||||
extends:
|
||||
file: 'share_db.yaml'
|
||||
service: '${DB_MODE:-internal}' # set to one of [shared, internal]
|
||||
environment:
|
||||
POSTGRES_PASSWORD: '${DB_PASSWORD}'
|
||||
POSTGRES_USER: '${DB_USERNAME}'
|
||||
|
|
6
immich/share_db.yaml
Normal file
6
immich/share_db.yaml
Normal file
|
@ -0,0 +1,6 @@
|
|||
services:
|
||||
internal: {}
|
||||
|
||||
shared:
|
||||
ports:
|
||||
- '${DB_EXTERNAL_ADDRESS:-127.0.0.1}:${DB_EXTERNAL_PORT:-5430}:5432'
|
Loading…
Reference in a new issue