Skip to content

Instantly share code, notes, and snippets.

@mvuksano
Created July 29, 2016 01:30
Show Gist options
  • Save mvuksano/66f2c4bbe5607462dc99505dcea78c1f to your computer and use it in GitHub Desktop.
Save mvuksano/66f2c4bbe5607462dc99505dcea78c1f to your computer and use it in GitHub Desktop.
Docker-compose for tls-dashbaord
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