Skip to content

Instantly share code, notes, and snippets.

@swade1987
Created June 27, 2016 15:18
Show Gist options
  • Save swade1987/55e53b43a46ee4f8e9616776be11f492 to your computer and use it in GitHub Desktop.
Save swade1987/55e53b43a46ee4f8e9616776be11f492 to your computer and use it in GitHub Desktop.
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