Added draft for mariadb docker role

This commit is contained in:
2023-12-29 22:50:42 +01:00
parent 41b409c8d5
commit 221373e6e3
3 changed files with 71 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
- name: Create Docker network for MariaDB
docker_network:
name: mariadb_network
state: present
when: run_once_backup_docker_to_local is not defined
- name: install MariaDB
docker_container:
name: mariadb
image: mariadb:latest
detach: yes
env:
MARIADB_ROOT_PASSWORD: "{{central_mariadb_root_password}}"
networks:
- name: mariadb_network
published_ports:
- "127.0.0.1:3306:3306"
when: run_once_backup_docker_to_local is not defined
- name: run the docker_mariadb tasks once
set_fact:
run_once_backup_docker_to_local: true
when: run_once_backup_docker_to_local is not defined