Compare commits

...

2 commits

Author SHA1 Message Date
97e72dde10 Update docker.io/library/postgres Docker tag to v18
Some checks failed
/ Ansible Lint (push) Successful in 2m47s
/ build (pull_request) Failing after 2m41s
/ Ansible Lint (pull_request) Successful in 2m31s
2026-05-19 22:01:21 +00:00
8428d5a66b
docs: use pymdownx.superfences to make codeblocks in lists work properly
Some checks failed
/ Ansible Lint (push) Successful in 2m33s
/ build (push) Failing after 2m38s
2026-05-19 23:49:06 +02:00
4 changed files with 5 additions and 3 deletions

View file

@ -1,7 +1,7 @@
# renovate: datasource=docker depName=git.hamburg.ccc.de/ccchh/oci-images/nextcloud
nextcloud__version: 32
# renovate: datasource=docker depName=docker.io/library/postgres
nextcloud__postgres_version: 15.17
nextcloud__postgres_version: 18.4
nextcloud__fqdn: cloud.hamburg.ccc.de
nextcloud__data_dir: /data/nextcloud
nextcloud__extra_configuration: "{{ lookup('ansible.builtin.template', 'resources/chaosknoten/cloud/nextcloud/extra_configuration.config.php.j2') }}"

View file

@ -7,6 +7,8 @@ markdown_extensions:
- admonition
- attr_list
- codehilite
- pymdownx.superfences:
css_class: codehilite
theme:
name: shadcn

View file

@ -62,7 +62,7 @@ services:
- POSTGRES_DB=mailmandb
- POSTGRES_USER=mailman
- "POSTGRES_PASSWORD={{ secret__lists__postgres_password }}"
image: docker.io/library/postgres:12-alpine
image: docker.io/library/postgres:18-alpine
volumes:
- /opt/mailman/database:/var/lib/postgresql/data
networks:

View file

@ -3,7 +3,7 @@
services:
database:
image: docker.io/library/postgres:15-alpine
image: docker.io/library/postgres:18-alpine
environment:
- "POSTGRES_USER=pretalx"
- "POSTGRES_PASSWORD={{ secret__pretalx_db_password }}"