deploy mariadb
All checks were successful
Deploy Containers / Prepare (push) Successful in 20s

This commit is contained in:
2025-11-26 23:36:34 -05:00
parent c653c2ac43
commit 71b1939f98
3 changed files with 20 additions and 24 deletions

View File

@@ -1,19 +0,0 @@
---
- name: Deploy Postgres Database
include_role:
name: docker
vars:
name: postgresql
directories:
- "{{ data_dir }}/db"
image:
name: postgres
tag: "17"
networks:
- name: "{{ docker_network_name }}"
volumes:
- "{{ data_dir }}/db:/var/lib/postgresql/data"
env:
POSTGRES_USER: "root"
POSTGRES_PASSWORD: "{{ GLOBAL_POSTGRES_PASSWORD }}"
PGDATA: "/var/lib/postgresql/data/pgdata"