mirror of
https://gitlab.sectorq.eu/home/docker-compose.git
synced 2025-07-02 00:08:33 +02:00
alias
This commit is contained in:
@ -28,7 +28,7 @@ services:
|
|||||||
depends_on:
|
depends_on:
|
||||||
- redis
|
- redis
|
||||||
- database
|
- database
|
||||||
restart: ${restart:-always}
|
restart: ${RESTART:-unless-stopped}
|
||||||
healthcheck:
|
healthcheck:
|
||||||
disable: false
|
disable: false
|
||||||
labels:
|
labels:
|
||||||
@ -59,7 +59,7 @@ services:
|
|||||||
env_file:
|
env_file:
|
||||||
- stack.env
|
- stack.env
|
||||||
|
|
||||||
restart: ${restart:-always}
|
restart: ${RESTART:-unless-stopped}
|
||||||
healthcheck:
|
healthcheck:
|
||||||
disable: false
|
disable: false
|
||||||
|
|
||||||
@ -68,7 +68,7 @@ services:
|
|||||||
image: ${DOCKER_REGISTRY:-}docker.io/redis:6.2-alpine
|
image: ${DOCKER_REGISTRY:-}docker.io/redis:6.2-alpine
|
||||||
healthcheck:
|
healthcheck:
|
||||||
test: redis-cli ping || exit 1
|
test: redis-cli ping || exit 1
|
||||||
restart: ${restart:-always}
|
restart: ${RESTART:-unless-stopped}
|
||||||
|
|
||||||
database:
|
database:
|
||||||
container_name: immich_postgres
|
container_name: immich_postgres
|
||||||
@ -100,7 +100,7 @@ services:
|
|||||||
-c max_wal_size=2GB
|
-c max_wal_size=2GB
|
||||||
-c shared_buffers=512MB
|
-c shared_buffers=512MB
|
||||||
-c wal_compression=on
|
-c wal_compression=on
|
||||||
restart: always
|
restart: ${RESTART:-unless-stopped}
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
model-cache:
|
model-cache:
|
||||||
|
Reference in New Issue
Block a user