Skip to content

Commit

Permalink
compose: fix consul:latest error
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Vaillancourt <tim@timvaillancourt.com>
  • Loading branch information
timvaillancourt committed Jul 10, 2023
1 parent 54cc13f commit 91ed1e9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/compose/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ services:
consul1:
command: agent -server -bootstrap-expect 3 -ui -disable-host-node-id -client 0.0.0.0
hostname: consul1
image: consul:latest
image: hashicorp/consul:latest
ports:
- 8400:8400
- 8500:8500
Expand All @@ -16,7 +16,7 @@ services:
- "8500"
- "8600"
hostname: consul2
image: consul:latest
image: hashicorp/consul:latest
consul3:
command: agent -server -retry-join consul1 -disable-host-node-id
depends_on:
Expand All @@ -26,7 +26,7 @@ services:
- "8500"
- "8600"
hostname: consul3
image: consul:latest
image: hashicorp/consul:latest
external_db_host:
build:
context: ./external_db/mysql
Expand Down

0 comments on commit 91ed1e9

Please sign in to comment.