lasthourcloud/templates/compose/dokuwiki.yaml

21 lines
582 B
YAML
Raw Normal View History

2024-02-20 14:07:12 +00:00
# documentation: https://www.dokuwiki.org/
# slogan: A lightweight and easy-to-use wiki platform for creating and managing documentation and knowledge bases.
2023-10-24 10:33:49 +00:00
# tags: wiki, documentation, knowledge, base
2024-02-20 14:07:12 +00:00
# logo: svgs/dokuwiki.png
2023-10-19 08:51:03 +00:00
services:
dokuwiki:
image: lscr.io/linuxserver/dokuwiki:latest
environment:
- SERVICE_FQDN_DOKUWIKI
- PUID=1000
- PGID=1000
- TZ=Europe/Madrid
volumes:
- dokuwiki-config:/config
healthcheck:
2024-05-17 08:11:55 +00:00
test: ["CMD", "curl", "-f", "http://127.0.0.1:80"]
2023-10-19 08:51:03 +00:00
interval: 2s
timeout: 10s
retries: 15