mirror of
https://github.com/zebrajr/HomeLab.git
synced 2026-01-15 12:15:06 +00:00
23 lines
519 B
YAML
23 lines
519 B
YAML
version: "3.7"
|
|
|
|
services:
|
|
dokuwiki:
|
|
image: 'mprasil/dokuwiki:stable'
|
|
container_name: ${APP_NAME}
|
|
restart: ${RESTART_POLICY}
|
|
networks:
|
|
- reverse_proxy_network
|
|
expose:
|
|
- 80
|
|
volumes:
|
|
- ${DOKUWIKI_DATA}:/dokuwiki/data
|
|
- ${DOKUWIKI_CONF}:/dokuwiki/conf
|
|
- ${DOKUWIKI_LIB_PLUGINS}:/dokuwiki/lib/plugins
|
|
- ${DOKUWIKI_LIB_TPL}:/dokuwiki/lib/tpl
|
|
- ${DOKUWIKI_LOGS}:/var/log
|
|
|
|
networks:
|
|
reverse_proxy_network:
|
|
name: reverse_proxy_network
|
|
external: true
|