Created
July 29, 2016 01:30
-
-
Save mvuksano/66f2c4bbe5607462dc99505dcea78c1f to your computer and use it in GitHub Desktop.
Docker-compose for tls-dashbaord
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: '2' | |
services: | |
"tls-dashboard": | |
build: . | |
image: tls-dashboard | |
ports: | |
- "8080:8080" | |
volumes: | |
- /root/tls-dashboard/web_service | |
"tls-dashboard-cron": | |
build: | |
context: . | |
dockerfile: Dockerfile.cron | |
image: tls-dashboard-cron | |
volumes_from: | |
- "tls-dashboard" | |
environment: | |
- TLS_DASHBOARD_HOSTS=${TLS_DASHBOARD_HOSTS} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment