Compare commits
5 Commits
0.1.0+0.26
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 6ff9ea57f7 | |||
| b6c979a582 | |||
| 14b0f061a5 | |||
| 4c041e1b35 | |||
| 5a4f19e791 |
10
.env.sample
10
.env.sample
@ -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
|
||||
|
||||
3
compose.customversion.yml
Normal file
3
compose.customversion.yml
Normal file
@ -0,0 +1,3 @@
|
||||
services:
|
||||
app:
|
||||
image: ghcr.io/toeverything/affine:${IMAGE_VERSION}
|
||||
@ -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
1
release/0.2.0+0.26.4
Normal 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
6
renovate.json
Normal file
@ -0,0 +1,6 @@
|
||||
{
|
||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||
"extends": [
|
||||
"config:recommended"
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user