Compare commits

..
Author SHA1 Message Date
dannygroenewegen 5d923d343f chore: publish 13.2.0+32-fpm release
continuous-integration/drone/tag Build is passing
2026-08-09 20:52:28 +02:00
dannygroenewegen 14ec244f97 fix: use pgautoupgrade's default healthcheck 2026-08-09 20:48:18 +02:00
dannygroenewegen abd102e3a8 fix: align nginx_conf config name with its compose key
continuous-integration/drone/tag Build is passing
Name dropped the _conf suffix, so abra's live-vs-desired lookup
(keyed by compose config name) never matched and always showed
nginx_conf as (new) on deploy, even when unchanged.
2026-08-09 13:00:35 +00:00
ineiti c7152cc390 Merge pull request 'pr-13.2.0 - Last release for nextcloud-32' (#97) from pr-13.2.0+32-fpm into main
Reviewed-on: #97
2026-08-09 12:48:15 +00:00
Linus Gasser f9e57d1ec1 Last release for nextcloud-32 2026-08-08 11:09:55 +02:00
dannygroenewegen 3be4c3aa4a chore: publish 13.1.5+32.0.13-fpm release
continuous-integration/drone/tag Build is passing
2026-08-02 17:13:45 +02:00
dannygroenewegen e1c9ebd047 Merge pull request 'fix: remove -c max_connections flag from postgres command to fix pgautoupgrade' (#95) from fix-pgautoupgrade-max-connections into main
Reviewed-on: #95
2026-08-02 15:11:45 +00:00
dannygroenewegen 1d9c844cad fix: remove -c max_connections flag from postgres command to fix pgautoupgrade
The pgautoupgrade switch from 13.1.0+32.0.11-fpm was released untested and had a bug: the db service's `-c max_connections=...` command breaks pgautoupgrade, failing with `initdb: invalid option -- 'c'`. See pgautoupgrade/docker-pgautoupgrade#148
2026-08-02 17:02:40 +02:00
Linus Gasser 8e57236f0d Releasing updates
continuous-integration/drone/tag Build is passing
2026-07-25 21:59:52 +02:00
renovate-bot 4c41c21799 chore(deps): update mariadb docker tag to v12 2026-07-25 21:55:11 +02:00
renovate-bot f60f10c6dd chore(deps): update mariadb docker tag to v11.8
continuous-integration/drone/tag Build is passing
2026-07-25 19:40:39 +00:00
renovate-bot d8f5c23897 chore(deps): update nginx docker tag to v1.31.3 2026-07-25 19:35:35 +00:00
renovate-bot 7e4cbce41e chore(deps): update docker.elastic.co/elasticsearch/elasticsearch docker tag to v8.19.19 2026-07-25 19:33:35 +00:00
renovate-bot 6619501f5c chore(deps): update redis docker tag to v8.8.1 2026-07-24 19:17:43 +00:00
renovate-bot 53d7f765ae chore(deps): update nextcloud docker tag to v32.0.13
continuous-integration/drone/tag Build is passing
2026-07-24 02:28:12 +00:00
stevensting fcf1ca56d3 chore: publish 13.1.1+32.0.12-fpm release
continuous-integration/drone/tag Build is passing
2026-07-22 13:27:50 +02:00
8 changed files with 24 additions and 19 deletions
-2
View File
@@ -6,8 +6,6 @@ ENABLE_BACKUPS=true
DOMAIN=nextcloud.example.com
## Domain aliases
#EXTRA_DOMAINS=', `www.nextcloud.example.com`'
# same list as above but space separated
#EXTRA_DOMAINS_TRUSTED=cloud.coquest.coop
LETS_ENCRYPT_ENV=production
COMPOSE_FILE="compose.yml"
+2 -2
View File
@@ -2,7 +2,7 @@ version: "3.8"
services:
elasticsearch:
image: "docker.elastic.co/elasticsearch/elasticsearch:8.19.16"
image: "docker.elastic.co/elasticsearch/elasticsearch:8.19.19"
environment:
- cluster.name=docker-cluster
- bootstrap.memory_lock=true
@@ -29,7 +29,7 @@ services:
mode: 0600
searchindexer:
image: nextcloud:32.0.12-fpm
image: nextcloud:32-fpm
volumes:
- nextcloud:/var/www/html/
- nextapps:/var/www/html/custom_apps:cached
+1 -1
View File
@@ -9,7 +9,7 @@ services:
- MYSQL_PASSWORD_FILE=/run/secrets/db_password
db:
image: "mariadb:11.4"
image: "mariadb:12.3"
environment:
- MYSQL_DATABASE=nextcloud
- MYSQL_USER=nextcloud
+7 -6
View File
@@ -11,7 +11,8 @@ services:
db:
image: "pgautoupgrade/pgautoupgrade:14-debian"
command: -c "max_connections=${MAX_DB_CONNECTIONS:-100}"
#setting max_connections with -c breaks pgautoupgrade
#command: -c "max_connections=${MAX_DB_CONNECTIONS:-100}"
volumes:
- "postgres:/var/lib/postgresql/data"
networks:
@@ -22,11 +23,11 @@ services:
POSTGRES_DB: nextcloud
secrets:
- db_password
healthcheck:
test: ["CMD-SHELL", "pg_isready", "-U", "nextcloud"]
interval: 10s
timeout: 5s
retries: 5
# The pgautoupgrade image already ships its own HEALTHCHECK.
# This runs pg_isready but also takes into accounts if pg_upgrade is being run.
# No need to override it here.
# healthcheck:
# test: ["CMD", "/usr/local/bin/pgautoupgrade-healthcheck.sh"]
deploy:
labels:
backupbot.backup.pre-hook: "/pg_backup.sh backup"
+7 -8
View File
@@ -1,7 +1,7 @@
version: "3.8"
services:
web:
image: nginx:1.31.1
image: nginx:1.31.3
depends_on:
- app
configs:
@@ -48,7 +48,7 @@ services:
start_period: 5m
app:
image: nextcloud:32.0.12-fpm
image: nextcloud:32-fpm
depends_on:
- db
configs:
@@ -70,8 +70,7 @@ services:
- STACK_NAME
- NEXTCLOUD_ADMIN_USER=${ADMIN_USER}
- NEXTCLOUD_ADMIN_PASSWORD_FILE=/run/secrets/admin_password
- EXTRA_DOMAINS_TRUSTED
- NEXTCLOUD_TRUSTED_DOMAINS=${DOMAIN} ${EXTRA_DOMAINS_TRUSTED}
- NEXTCLOUD_TRUSTED_DOMAINS=${DOMAIN}
- TRUSTED_PROXIES=10.0.0.0/8
- REDIS_HOST=cache
- OVERWRITEPROTOCOL=https
@@ -96,7 +95,7 @@ services:
failure_action: rollback
order: start-first
labels:
- "coop-cloud.${STACK_NAME}.version=13.1.0+32.0.11-fpm"
- "coop-cloud.${STACK_NAME}.version=13.2.0+32-fpm"
- "coop-cloud.${STACK_NAME}.timeout=${TIMEOUT}"
- "backupbot.backup=${ENABLE_BACKUPS:-true}"
- "backupbot.backup.volumes.redis=false"
@@ -110,7 +109,7 @@ services:
start_period: 15m
cron:
image: nextcloud:32.0.12-fpm
image: nextcloud:32-fpm
volumes:
- nextcloud:/var/www/html/
- nextapps:/var/www/html/custom_apps:cached
@@ -126,7 +125,7 @@ services:
cache:
image: redis:8.8.0-alpine
image: redis:8.8.1-alpine
networks:
- internal
volumes:
@@ -155,7 +154,7 @@ volumes:
configs:
nginx_conf:
name: ${STACK_NAME}_nginx_${NGINX_CONF_VERSION}
name: ${STACK_NAME}_nginx_conf_${NGINX_CONF_VERSION}
file: nginx.conf.tmpl
template_driver: golang
fpm_tune:
+4
View File
@@ -0,0 +1,4 @@
chore(deps): update mariadb docker tag to v12
chore(deps): update mariadb docker tag to v11.8
chore(deps): update nginx docker tag to v1.31.3
chore(deps): update docker.elastic.co/elasticsearch/elasticsearch docker tag to v8.19.19
+2
View File
@@ -0,0 +1,2 @@
Important:
The pgautoupgrade switch from 13.1.0+32.0.11-fpm was released untested and had a bug: the db service's `-c max_connections=...` command breaks pgautoupgrade, failing with `initdb: invalid option -- 'c'`. If your db got stuck mid-upgrade on 13.1.0-13.1.4 with that error: restore the old data dir and remove the upgrade lock file. Then redeploy this version.
+1
View File
@@ -0,0 +1 @@
Last release for nextcloud-32, pointing to the latest version of nextcloud-32.