Removed ignore errors from db management in discourse

This commit is contained in:
2025-07-10 11:44:35 +02:00
parent 41d023abee
commit 707cc9d2d1
6 changed files with 25 additions and 16 deletions

View File

@@ -1,6 +1,6 @@
- name: Create Docker network for PostgreSQL
docker_network:
name: central_postgres
name: "{{ applications[application_id].network }}"
state: present
ipam_config:
- subnet: "{{ networks.local.postgres.subnet }}"
@@ -15,7 +15,7 @@
POSTGRES_PASSWORD: "{{ applications[application_id].credentials.postgres_password }}"
POSTGRES_INITDB_ARGS: "--encoding=UTF8 --locale=C" # Necessary for web-app-matrix
networks:
- name: central_postgres
- name: "{{ applications[application_id].network }}"
published_ports:
- "127.0.0.1:{{ applications[application_id].port }}:5432"
volumes: