Some checks are pending
ci/woodpecker/pr/woodpecker Pipeline is pending approval
22 lines
560 B
YAML
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
|