You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
666 B

version: "3"
services:
app:
image: wallabag/wallabag
container_name: wallabag
restart: unless-stopped
healthcheck:
test:
[
"CMD",
"wget",
"--no-verbose",
"--tries=1",
"--spider",
"http://localhost",
]
interval: 1m
timeout: 3s
environment:
- SYMFONY__ENV__DOMAIN_NAME=https://wallabag.gerstner.se
- SYMFONY__ENV__SERVER_NAME="My Wallabag Instance"
- SYMFONY__ENV__FOSUSER_REGISTRATION=false
ports:
- 127.0.0.1:8012:80
volumes:
- ./data:/var/www/wallabag/data
- ./images:/var/www/wallabag/web/assets/images