Created
June 27, 2016 15:18
-
-
Save swade1987/55e53b43a46ee4f8e9616776be11f492 to your computer and use it in GitHub Desktop.
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: | |
traefik: | |
image: traefik | |
command: --web --docker --docker.domain=docker.localhost --logLevel=DEBUG | |
ports: | |
- "80:80" | |
- "8080:8080" | |
volumes: | |
- /var/run/docker.sock:/var/run/docker.sock | |
- /dev/null:/traefik.toml | |
web: | |
build: . | |
volumes: | |
- .:/app | |
ports: | |
- "3000" | |
labels: | |
- "traefik.backend=data-driven" | |
- "traefik.frontend.rule=Host:data-driven.docker.localhost" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment