Update docker-compose.yml to reflect changes in PR #3830

This commit is contained in:
Frédéric Guillot 2018-04-30 11:39:16 -07:00
parent 93846ee990
commit b9a457fc03
2 changed files with 5 additions and 4 deletions

View File

@ -3,8 +3,8 @@ FROM alpine:3.7
VOLUME /var/www/app/data
VOLUME /var/www/app/plugins
VOLUME /etc/nginx/ssl
EXPOSE 80 443
EXPOSE 80 443
ARG VERSION
@ -27,8 +27,5 @@ RUN cd /tmp \
ADD docker/ /
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
CMD []

View File

@ -4,11 +4,15 @@ services:
image: kanboard/kanboard:latest
ports:
- "80:80"
- "443:443"
volumes:
- kanboard_data:/var/www/app/data
- kanboard_plugins:/var/www/app/plugins
- kanboard_ssl:/etc/nginx/ssl
volumes:
kanboard_data:
driver: local
kanboard_plugins:
driver: local
kanboard_ssl:
driver: local