diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-06-24 08:17:15 +0200 |
---|---|---|
committer | Quentin Dufour <quentin@deuxfleurs.fr> | 2024-06-24 08:17:15 +0200 |
commit | 793cb2d3c20d47f3a74f385c4b9aeadf2e2297b0 (patch) | |
tree | baf4a7c44ae5ec8bd83bbc2e62423b3d78c6d089 /integration | |
parent | 37a9f6fa54fc8e237ea117d8d0e1480795c5c831 (diff) | |
download | guichet-793cb2d3c20d47f3a74f385c4b9aeadf2e2297b0.tar.gz guichet-793cb2d3c20d47f3a74f385c4b9aeadf2e2297b0.zip |
update dev env skeleton
Diffstat (limited to 'integration')
-rw-r--r-- | integration/docker-compose.yml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/integration/docker-compose.yml b/integration/docker-compose.yml index ec855db..e44a723 100644 --- a/integration/docker-compose.yml +++ b/integration/docker-compose.yml @@ -1,11 +1,15 @@ version: '3' services: consul: - image: hashicorp/consul:1.16 + # sync with nixos stable packages assuming our stack is up to date + # https://search.nixos.org/packages?channel=24.05&from=0&size=50&sort=relevance&type=packages&query=consul + image: hashicorp/consul:1.18 restart: "always" expose: - 8500 bottin: + # sync with deuxfleurs/nixcfg/cluster/prod/app/core/deploy/bottin.hcl + # to ensure compatibility with prod image: dxflrs/bottin:7h18i30cckckaahv87d3c86pn4a7q41z #command: "-config /etc/bottin.json" restart: "always" @@ -15,7 +19,9 @@ services: volumes: - "./config/bottin.json:/config.json" garage: - image: dxflrs/garage:v0.8.2 + # sync with deuxfleurs/nixcfg/cluster/prod/app/garage/deploy/garage.hcl + # to ensure compatibility with prod + image: superboum/garage:v1.0.0-rc1-hotfix-red-ftr-wquorum ports: - "3900:3900" - "3902:3902" |