Skip to content

Instantly share code, notes, and snippets.

@igor-vovk
Created January 19, 2016 14:27
Show Gist options
  • Save igor-vovk/41dd53e803cec8be1fa6 to your computer and use it in GitHub Desktop.
Save igor-vovk/41dd53e803cec8be1fa6 to your computer and use it in GitHub Desktop.
Docker Compose Consul cluster
consul:
image: progrium/consul:latest
# net: host
ports:
- "8400:8400"
- "8500:8500"
command: "-server -bootstrap -ui-dir /ui"
registrator:
command: -resync 30 -internal consul://consul:8500
image: gliderlabs/registrator:latest
# net: host
volumes:
- "/var/run/docker.sock:/tmp/docker.sock"
links:
- consul
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment