Skip to content

Instantly share code, notes, and snippets.

@Dolbager
Created December 15, 2017 13:30
Show Gist options
  • Save Dolbager/b311e4eb59b486e223c3e8925a4a89f9 to your computer and use it in GitHub Desktop.
Save Dolbager/b311e4eb59b486e223c3e8925a4a89f9 to your computer and use it in GitHub Desktop.
version: "2"
services:
consul1:
image: "consul:latest"
container_name: "consul1"
hostname: "consul1"
ports:
- "8400:8400"
- "8500:8500"
- "8600:53"
command: "agent -server -bootstrap-expect=1 -client=0.0.0.0 -ui -bind=0.0.0.0"
consul2:
image: "consul:latest"
container_name: "consul2"
hostname: "consul2"
expose:
- "8400"
- "8500"
- "8600"
command: "agent -join consul1 -client=0.0.0.0 -ui -bind=0.0.0.0"
depends_on:
- consul1
consul3:
image: "consul:latest"
container_name: "consul3"
hostname: "consul3"
expose:
- "8400"
- "8500"
- "8600"
command: "agent -join consul1 -client=0.0.0.0 -ui -bind=0.0.0.0"
depends_on:
- consul1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment