mirror of
https://github.com/ledgersmb/ledgersmb-docker.git
synced 2025-04-11 19:27:11 -04:00
Make containers restart automatically
and document how to disable that...
This commit is contained in:
parent
2c6e26e41c
commit
2fd0e3a899
@ -25,6 +25,9 @@ services:
|
|||||||
- "./nginx.conf:/etc/nginx/nginx.conf"
|
- "./nginx.conf:/etc/nginx/nginx.conf"
|
||||||
ports:
|
ports:
|
||||||
- "8080:8080"
|
- "8080:8080"
|
||||||
|
# Comment the line below to stop the container from restarting on boot
|
||||||
|
# unless it was manually stopped
|
||||||
|
restart: unless-stopped
|
||||||
lsmb:
|
lsmb:
|
||||||
volumes:
|
volumes:
|
||||||
- "lsmbdata:/srv/ledgersmb"
|
- "lsmbdata:/srv/ledgersmb"
|
||||||
|
@ -25,6 +25,9 @@ services:
|
|||||||
- internal
|
- internal
|
||||||
volumes:
|
volumes:
|
||||||
- "pgdata:/var/lib/postgresql/data"
|
- "pgdata:/var/lib/postgresql/data"
|
||||||
|
# Comment the line below to stop the container from restarting on boot
|
||||||
|
# unless it was manually stopped
|
||||||
|
restart: unless-stopped
|
||||||
lsmb:
|
lsmb:
|
||||||
depends_on:
|
depends_on:
|
||||||
- postgres
|
- postgres
|
||||||
@ -67,6 +70,9 @@ services:
|
|||||||
# hosted in a separate container, this setting needs to be adjusted.
|
# hosted in a separate container, this setting needs to be adjusted.
|
||||||
#
|
#
|
||||||
# PROXY_IP: 172.17.0.1/12
|
# PROXY_IP: 172.17.0.1/12
|
||||||
|
# Comment the line below to stop the container from restarting on boot
|
||||||
|
# unless it was manually stopped
|
||||||
|
restart: unless-stopped
|
||||||
|
|
||||||
# having the dbdata volume is required to persist our
|
# having the dbdata volume is required to persist our
|
||||||
# data between PostgreSQL container updates; without
|
# data between PostgreSQL container updates; without
|
||||||
|
Loading…
Reference in New Issue
Block a user