1
0
mirror of https://github.com/wallabag/docker synced 2025-12-13 01:36:28 +00:00

Merge pull request #398 from neilbags/patch-1

Add restart: unless-stopped to example docker-compose
This commit is contained in:
Kevin Decherf
2024-03-10 14:11:08 +01:00
committed by GitHub

View File

@@ -112,6 +112,7 @@ version: '3'
services:
wallabag:
image: wallabag/wallabag
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=wallaroot
- SYMFONY__ENV__DATABASE_DRIVER=pdo_mysql
@@ -139,6 +140,7 @@ services:
- redis
db:
image: mariadb
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=wallaroot
volumes:
@@ -149,6 +151,7 @@ services:
timeout: 3s
redis:
image: redis:alpine
restart: unless-stopped
healthcheck:
test: ["CMD", "redis-cli", "ping"]
interval: 20s