forked from Deuxfleurs/guichet
17 lines
343 B
YAML
17 lines
343 B
YAML
|
version: '3'
|
||
|
services:
|
||
|
consul:
|
||
|
image: consul
|
||
|
restart: "always"
|
||
|
expose:
|
||
|
- "8500"
|
||
|
bottin:
|
||
|
image: dxflrs/bottin:dnp41vp8w24h4mbh0xg1mybzr1f46k41
|
||
|
command: "-config /etc/bottin.json"
|
||
|
restart: "always"
|
||
|
depends_on: ["consul"]
|
||
|
expose:
|
||
|
- 389
|
||
|
volumes:
|
||
|
- "./config/bottin.json:/etc/bottin.json"
|