mirror of
https://github.com/jpetazzo/container.training.git
synced 2026-03-04 02:10:23 +00:00
13 lines
304 B
YAML
13 lines
304 B
YAML
version: "2"
|
|
services:
|
|
bootstrap:
|
|
image: jpetazzo/consul
|
|
command: agent -server -bootstrap
|
|
container_name: bootstrap
|
|
server:
|
|
image: jpetazzo/consul
|
|
command: agent -server -join bootstrap -join server
|
|
client:
|
|
image: jpetazzo/consul
|
|
command: members -rpc-addr server:8400
|