guichet/docker-compose.yml
Fabien Le Frapper 48df2123cf
Some checks are pending
ci/woodpecker/pr/woodpecker Pipeline is pending approval
Improve developper experience
- Add docker compose
- Fix a few typo in README
- Add steps to run project locally
- Add a sample bottin config
2025-03-20 23:27:59 +01:00

24 lines
591 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
ports:
- "8500:8500"