1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-16 03:48:44 +00:00
dockerfiles/wekan/docker-compose.yml

19 lines
290 B
YAML
Raw Normal View History

2017-05-19 05:29:40 +00:00
wekan:
image: wekanteam/wekan
ports:
- "8081:80"
links:
- mongo
environment:
- MONGO_URL=mongodb://mongo/wekan
- ROOT_URL=https://todo.easypi.pro
restart: always
mongo:
image: mongo
ports:
- "27017:27017"
volumes:
- ./data:/data/db
restart: always