Created
April 28, 2020 09:03
-
-
Save ribtoks/81b78c97e3196f80aa36fb022eaa2d14 to your computer and use it in GitHub Desktop.
Kanboard TDG dockerfile
This file contains hidden or 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: | |
kanboard: | |
image: kanboard/kanboard:v1.2.14 | |
ports: | |
- "4580:80" | |
- "45443:443" | |
volumes: | |
- kanboard_data:/var/www/app/data | |
- kanboard_plugins:/var/www/app/plugins | |
- kanboard_ssl:/etc/nginx/ssl | |
volumes: | |
kanboard_data: | |
driver: local | |
driver_opts: | |
type: none | |
device: $PWD/data | |
o: bind | |
kanboard_plugins: | |
driver: local | |
driver_opts: | |
type: none | |
device: $PWD/plugins | |
o: bind | |
kanboard_ssl: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment