guichet/docker-compose.yml
Fabien Le Frapper 4f3b5d8210
Some checks are pending
ci/woodpecker/pr/woodpecker Pipeline is pending approval
Do not expose ports in consul
2025-03-20 23:29:05 +01:00

22 lines
560 B
YAML

services:
bottin:
image: lxpz/bottin_amd64
platform: linux/amd64
entrypoint: /bottin -config /config.json
depends_on:
consul:
condition: service_healthy
restart: true
ports:
- 389:389
volumes:
- ./bottin.config.json:/config.json
consul:
image: consul:1.15
command: agent -server -ui -node=server-1 -bootstrap-expect=1 -client=0.0.0.0
healthcheck:
test: curl --fail http://localhost:8500/ui || exit 1
interval: 10s
retries: 5
start_period: 10s
timeout: 10s