Compare commits

...

2 commits

Author SHA1 Message Date
e348cce60a Update docker.io/library/mariadb Docker tag to v12
Some checks failed
/ Ansible Lint (push) Failing after 50s
/ Ansible Lint (pull_request) Failing after 51s
2026-01-25 12:30:42 +00:00
f887de25c5 make building and pulling configurable
Some checks failed
/ Ansible Lint (push) Failing after 40s
2026-01-25 13:26:20 +01:00
3 changed files with 5 additions and 3 deletions

View file

@ -3,7 +3,7 @@
services: services:
database: database:
image: docker.io/library/mariadb:11 image: docker.io/library/mariadb:12
environment: environment:
- "MARIADB_DATABASE=wordpress" - "MARIADB_DATABASE=wordpress"
- "MARIADB_ROOT_PASSWORD={{ secret__mariadb_root_password }}" - "MARIADB_ROOT_PASSWORD={{ secret__mariadb_root_password }}"

View file

@ -1 +1,3 @@
docker_compose__build: always
docker_compose__configuration_files: [ ] docker_compose__configuration_files: [ ]
docker_compose__pull: always

View file

@ -79,8 +79,8 @@
community.docker.docker_compose_v2: community.docker.docker_compose_v2:
project_src: /ansible_docker_compose project_src: /ansible_docker_compose
state: present state: present
build: always build: "{{ docker_compose__build }}"
pull: always pull: "{{ docker_compose__pull }}"
remove_orphans: true remove_orphans: true
become: true become: true