Compare commits

...

6 Commits

Author SHA1 Message Date
marlon 7ede5f7cc6 chore: publish 3.6.2+v3.4.5 release 2025-10-27 13:32:31 -04:00
marlon 8b06144f54 fix: bump entrypoint version var 2025-10-27 13:25:34 -04:00
marlon 6c6b5c66ca chore: publish 3.6.1+v3.4.5 release 2025-10-22 23:02:24 -04:00
marlon 993ed9cf09 Garage support .env addition 2025-10-22 21:09:23 -04:00
marlon 1c2302b288 Merge branch 'master' into HEAD 2025-10-22 21:03:58 -04:00
marlon 27d5c092de add support for Garage RPC port 2025-10-22 21:01:02 -04:00
5 changed files with 17 additions and 2 deletions
+4
View File
@@ -163,3 +163,7 @@ COMPOSE_FILE="compose.yml"
## Matrix
#COMPOSE_FILE="$COMPOSE_FILE:compose.irc.yml"
#IRC_ENABLED=1
## Garage
#COMPOSE_FILE="$COMPOSE_FILE:compose.garage.yml"
#GARAGE_RPC_ENABLED=1
+1 -1
View File
@@ -1,3 +1,3 @@
export TRAEFIK_YML_VERSION=v24
export FILE_PROVIDER_YML_VERSION=v10
export ENTRYPOINT_VERSION=v4
export ENTRYPOINT_VERSION=v5
+7
View File
@@ -0,0 +1,7 @@
version: "3.8"
services:
app:
environment:
- GARAGE_RPC_ENABLED
ports:
- "3901:3901"
+1 -1
View File
@@ -48,7 +48,7 @@ services:
- "traefik.http.routers.${STACK_NAME}.tls.certresolver=${LETS_ENCRYPT_ENV}"
- "traefik.http.routers.${STACK_NAME}.service=api@internal"
- "traefik.http.routers.${STACK_NAME}.middlewares=security@file"
- "coop-cloud.${STACK_NAME}.version=3.5.0+v3.4.5"
- "coop-cloud.${STACK_NAME}.version=3.6.2+v3.4.5"
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT:-120}"
- "backupbot.backup=${ENABLE_BACKUPS:-true}"
+4
View File
@@ -37,6 +37,10 @@ entrypoints:
gitea-ssh:
address: ":2222"
{{ end }}
{{ if eq (env "GARAGE_RPC_ENABLED") "1" }}
garage-rpc:
address: ":3901"
{{ end }}
{{ if eq (env "FOODSOFT_SMTP_ENABLED") "1" }}
foodsoft-smtp:
address: ":2525"