Fixed restart to unless-stopped
parent
7d5233228f
commit
83cb6c4538
|
@ -6,7 +6,7 @@ services:
|
|||
context: ${BUILD_ROOT_PATH}/docker/etherpad
|
||||
dockerfile: Dockerfile
|
||||
container_name: isard-apps-etherpad
|
||||
restart: on-failure:10
|
||||
restart: unless-stopped
|
||||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
# ports:
|
||||
|
|
|
@ -5,7 +5,7 @@ services:
|
|||
jitsi:
|
||||
container_name: jitsi
|
||||
image: jitsi/web:latest
|
||||
restart: ${RESTART_POLICY}
|
||||
restart: unless-stopped
|
||||
# ports:
|
||||
# - '${HTTP_PORT}:80'
|
||||
# - '${HTTPS_PORT}:443'
|
||||
|
|
|
@ -20,5 +20,6 @@ services:
|
|||
MYSQL_DATABASE: wordpress
|
||||
MYSQL_USER: wordpress
|
||||
MYSQL_PASSWORD: ${WORDPRESS_MARIADB_PASSWORD}
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- isard_net
|
|
@ -6,6 +6,7 @@ services:
|
|||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- ${BUILD_ROOT_PATH}/docker/onlyoffice/local.json:/etc/onlyoffice/documentserver/local.json:ro
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- isard_net
|
||||
|
||||
|
|
|
@ -6,5 +6,6 @@ services:
|
|||
volumes:
|
||||
- /etc/localtime:/etc/localtime:ro
|
||||
- ${DB_FOLDER}/redis:/data
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- isard_net
|
|
@ -29,6 +29,7 @@ services:
|
|||
- isard-apps-mariadb
|
||||
links:
|
||||
- isard-apps-mariadb
|
||||
restart: unless-stopped
|
||||
networks:
|
||||
- isard_net
|
||||
|
||||
|
|
Loading…
Reference in New Issue