6 Commits

Author SHA1 Message Date
b0ff30e72b chore: publish 0.0.2+v2.3.0 release 2026-05-01 09:42:56 -04:00
cf9676fd5f Merge pull request 'fix: proper length for rpc secret' (#7) from fixes into main
Reviewed-on: #7
Reviewed-by: marlon, brooke
2026-04-24 21:02:26 +00:00
f
1ebc2c2eca feat: set container hostname to domain
this allows finding the hostname on `garage status`
2026-04-21 20:47:45 -03:00
f
aded3647a9 fix: upgrade to 2.3.0 2026-04-17 11:23:30 -03:00
f
24c457a5d4 fix: proper length for rpc secret 2026-04-17 03:22:36 -03:00
22e218107e Merge pull request 'feat: support sqlite and other database engines' (#6) from sqlite into main
Reviewed-on: #6
2026-04-05 23:02:32 +00:00
2 changed files with 4 additions and 3 deletions

View File

@ -5,7 +5,7 @@ DOMAIN=garage.example.com
LETS_ENCRYPT_ENV=production
COMPOSE_FILE="compose.yml"
SECRET_RPC_SECRET_VERSION=v1 # length=32 charset=hex
SECRET_RPC_SECRET_VERSION=v1 # length=64 charset=hex
# Changing the replication factor after initial deployment is not
# supported and requires deleting the existing cluster layout metadata.

View File

@ -3,7 +3,8 @@ version: "3.8"
services:
app:
image: dxflrs/garage:v2.1.0
image: dxflrs/garage:v2.3.0
hostname: "${DOMAIN}"
configs:
- source: garage_conf
target: /etc/garage.toml
@ -24,7 +25,7 @@ services:
- "traefik.tcp.routers.${STACK_NAME}-rpc.rule=HostSNI(`*`)"
- "traefik.tcp.routers.${STACK_NAME}-rpc.entrypoints=garage-rpc"
- "traefik.tcp.services.${STACK_NAME}-rpc.loadbalancer.server.port=3901"
- "coop-cloud.${STACK_NAME}.version=0.0.1+2.1.0"
- "coop-cloud.${STACK_NAME}.version=0.0.2+v2.3.0"
- "backupbot.backup=true"
- "backupbot.backup.pre-hook=/garage meta snapshot --all"
- "backupbot.backup.path=/var/lib/garage/meta/snapshots/,/var/lib/garage/meta/cluster_layout,/var/lib/garage/meta/data_layout,/var/lib/garage/meta/node_key,/var/lib/garage/meta/node_key.pub"