5 Commits

5 changed files with 20 additions and 6 deletions

View File

@ -5,8 +5,6 @@ DOMAIN=affine.example.com
## Domain aliases
#EXTRA_DOMAINS=', `www.affine.example.com`'
# use this, if you don't want to depend on recipe updates for upgrading affine, e.g. "stable" or "latest"
#IMAGE_VERSION=stable
ENABLE_BACKUPS=true
@ -24,4 +22,10 @@ COMPOSE_FILE="compose.yml"
#MAILER_USER=
#MAILER_SENDER=
#MAILER_IGNORE_TLS=false
#MAILER_PORT=465
#MAILER_PORT=465
## Custom Image Version
# use this, if you don't want to depend on recipe updates for upgrading affine, e.g. "stable" or "latest"
# COMPOSE_FILE="$COMPOSE_FILE:compose.customversion.yml"
#IMAGE_VERSION=stable

View File

@ -0,0 +1,3 @@
services:
app:
image: ghcr.io/toeverything/affine:${IMAGE_VERSION}

View File

@ -1,7 +1,7 @@
---
services:
app:
image: ghcr.io/toeverything/affine:${IMAGE_VERSION:-0.26.2}
image: ghcr.io/toeverything/affine:0.26.4
environment:
REDIS_SERVER_HOST: redis
@ -26,7 +26,7 @@ services:
## Redirect HTTP to HTTPS
- "traefik.http.middlewares.${STACK_NAME}-redirectscheme.redirectscheme.scheme=https"
- "traefik.http.middlewares.${STACK_NAME}-redirectscheme.redirectscheme.permanent=true"
- "coop-cloud.${STACK_NAME}.version=0.1.0+0.26.2"
- "coop-cloud.${STACK_NAME}.version=0.2.0+0.26.4"
- "backupbot.backup=${ENABLE_BACKUPS:-true}"
- "backupbot.volumes.redis=false"
@ -42,7 +42,7 @@ services:
test: ["CMD-SHELL", "bash -c ':> /dev/tcp/127.0.0.1/3010' || exit 1"]
interval: 30s
timeout: 10s
retries: 10
retries: 20
start_period: 1m
volumes:

1
release/0.2.0+0.26.4 Normal file
View File

@ -0,0 +1 @@
if you use IMAGE_VERSION, update your env because it was moved to additional compose file to stick with fixed versions as default from now on

6
renovate.json Normal file
View File

@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}