diff options
author | Adrien <adrien@luxeylab.net> | 2023-03-27 10:34:52 +0200 |
---|---|---|
committer | Adrien <adrien@luxeylab.net> | 2023-03-27 10:34:52 +0200 |
commit | 9eaa4c068ddc72eb2764b171918281cad62212b5 (patch) | |
tree | cb21271a828a6bce56e66ee441db5a72422828bf /integration/docker-compose.yml | |
parent | f77697f50147f34aad34fd13aab85f335f6a9746 (diff) | |
download | guichet-9eaa4c068ddc72eb2764b171918281cad62212b5.tar.gz guichet-9eaa4c068ddc72eb2764b171918281cad62212b5.zip |
added integration folder with a docker compose file and some explanation
Diffstat (limited to 'integration/docker-compose.yml')
-rw-r--r-- | integration/docker-compose.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/integration/docker-compose.yml b/integration/docker-compose.yml new file mode 100644 index 0000000..5ed0650 --- /dev/null +++ b/integration/docker-compose.yml @@ -0,0 +1,16 @@ +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" |