This repository has been archived on 2023-02-05. You can view files and clone it, but cannot push or open issues or pull requests.
loki/docker-compose.yml
2017-09-16 21:27:47 +01:00

29 lines
412 B
YAML

version: '2'
volumes:
vol_wiki:
services:
html:
container_name: docker_html
build: html
image: html
wiki:
container_name: docker_wiki
build: dokuwiki
image: wiki
volumes:
- vol_wiki:/var/dokuwiki-storage
proxy:
container_name: docker_proxy
build: nginx-proxy
image: proxy
ports:
- 80:80
links:
- html
- wiki
restart: always