diff options
author | Adrien <adrien@luxeylab.net> | 2023-03-27 11:13:09 +0200 |
---|---|---|
committer | Adrien <adrien@luxeylab.net> | 2023-03-27 11:13:09 +0200 |
commit | 5fb0139a3fccde294ab35659ef839618400dcca2 (patch) | |
tree | b04c8bcae650c91196beb90a92aa18566b2364b9 /integration/docker-compose.yml | |
parent | 9eaa4c068ddc72eb2764b171918281cad62212b5 (diff) | |
download | guichet-5fb0139a3fccde294ab35659ef839618400dcca2.tar.gz guichet-5fb0139a3fccde294ab35659ef839618400dcca2.zip |
bridged Guichet (built directly with Go) with the integration docker-composeintegration
Diffstat (limited to 'integration/docker-compose.yml')
-rw-r--r-- | integration/docker-compose.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/integration/docker-compose.yml b/integration/docker-compose.yml index 5ed0650..6331737 100644 --- a/integration/docker-compose.yml +++ b/integration/docker-compose.yml @@ -4,13 +4,13 @@ services: image: consul restart: "always" expose: - - "8500" + - 8500 bottin: image: dxflrs/bottin:dnp41vp8w24h4mbh0xg1mybzr1f46k41 command: "-config /etc/bottin.json" restart: "always" depends_on: ["consul"] - expose: - - 389 + ports: + - "389:389" volumes: - "./config/bottin.json:/etc/bottin.json" |