Created
April 26, 2019 09:22
-
-
Save JUNKI555/aa801d6ad6a7f9536df90e9d9578bbd2 to your computer and use it in GitHub Desktop.
20190426_Wekan_DockerCompose
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
wekan: | |
image: mquandalle/wekan | |
links: | |
- wekandb | |
environment: | |
- MONGO_URL=mongodb://wekandb/wekan | |
- ROOT_URL=http://{your ip or computer name}:9080 | |
ports: | |
- 9080:8080 | |
restart: always | |
wekandb: | |
image: mongo | |
volumes: | |
- wekandb:/data/db | |
- wekanconfigdb:/data/configdb | |
restart: always | |
volumes: | |
wekandb: | |
wekanconfigdb: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I tried this page and it works.
dockerで社内用かんばん「Wekan」を導入してタスク管理した話 - Qiita