fukuops/docker/dokuwiki/docker-compose.yml
2025-10-22 22:40:52 +02:00

26 lines
599 B
YAML

services:
wiki:
name: hane-dokuwiki
image: hane-dokuwiki-image
build: ./
volumes:
- type: volume
source: dokuwiki
target: /var/www/dokuwiki
- type: bind
source: /mnt/nas1/shared/dokuwiki/apache2.conf
target: /etc/apache2/apache2.conf
- type: bind
source: /mnt/nas1/shared/dokuwiki/001-wiki.conf
target: /etc/apache2/sites-enabled/001-wiki.conf
- /mnt/nas1/shared/dokuwiki/init.sh:/init.sh
ports:
- "44344:443/tcp"
entrypoint: /init.sh
volumes:
dokuwiki:
external: true
labels:
- "dev.roboces.wiki=Dokuwiki volume"
name: dokuwiki