mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-28 09:08:36 +02:00
19 lines
290 B
YAML
19 lines
290 B
YAML
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
|