mirror of
https://gitee.com/johng/gf
synced 2026-06-07 02:12:11 +08:00
31 lines
574 B
YAML
31 lines
574 B
YAML
version: '3.7'
|
|
|
|
services:
|
|
|
|
consul-server:
|
|
image: loads/consul:1.15
|
|
container_name: consul-server
|
|
restart: always
|
|
volumes:
|
|
- ./server.json:/consul/config/server.json:ro
|
|
networks:
|
|
- consul
|
|
ports:
|
|
- "8500:8500"
|
|
- "8600:8600/tcp"
|
|
- "8600:8600/udp"
|
|
command: "agent"
|
|
|
|
consul-client:
|
|
image: loads/consul:1.15
|
|
container_name: consul-client
|
|
restart: always
|
|
volumes:
|
|
- ./client.json:/consul/config/client.json:ro
|
|
networks:
|
|
- consul
|
|
command: "agent"
|
|
|
|
networks:
|
|
consul:
|
|
driver: bridge |