Created
December 15, 2017 13:30
-
-
Save Dolbager/b311e4eb59b486e223c3e8925a4a89f9 to your computer and use it in GitHub Desktop.
This file contains 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: | |
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