2023-03-27 08:34:52 +00:00
|
|
|
version: '3'
|
|
|
|
services:
|
|
|
|
consul:
|
2024-06-24 06:17:15 +00:00
|
|
|
# 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
|
2023-03-27 08:34:52 +00:00
|
|
|
restart: "always"
|
|
|
|
expose:
|
2023-03-27 09:13:09 +00:00
|
|
|
- 8500
|
2023-03-27 08:34:52 +00:00
|
|
|
bottin:
|
2024-06-24 06:17:15 +00:00
|
|
|
# sync with deuxfleurs/nixcfg/cluster/prod/app/core/deploy/bottin.hcl
|
|
|
|
# to ensure compatibility with prod
|
2023-09-25 13:35:54 +00:00
|
|
|
image: dxflrs/bottin:7h18i30cckckaahv87d3c86pn4a7q41z
|
|
|
|
#command: "-config /etc/bottin.json"
|
2023-03-27 08:34:52 +00:00
|
|
|
restart: "always"
|
|
|
|
depends_on: ["consul"]
|
2023-03-27 09:13:09 +00:00
|
|
|
ports:
|
|
|
|
- "389:389"
|
2023-03-27 08:34:52 +00:00
|
|
|
volumes:
|
2023-09-25 13:35:54 +00:00
|
|
|
- "./config/bottin.json:/config.json"
|
2023-04-18 17:37:51 +00:00
|
|
|
garage:
|
2024-06-24 06:17:15 +00:00
|
|
|
# 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
|
2023-04-18 17:37:51 +00:00
|
|
|
ports:
|
|
|
|
- "3900:3900"
|
|
|
|
- "3902:3902"
|
|
|
|
- "3903:3903"
|
|
|
|
- "3904:3904"
|
|
|
|
volumes:
|
|
|
|
- "./config/garage.toml:/etc/garage.toml"
|