From d812b465160d9f96252da1d8137d9ce8625c5b49 Mon Sep 17 00:00:00 2001 From: Vincent Mahnke Date: Sat, 25 Oct 2025 15:55:32 +0200 Subject: [PATCH 1/2] chore: Removes need for container host directory by moving database to volume --- docker-compose.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 045d853..cacf904 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -10,7 +10,7 @@ services: ports: - "3306:3306" volumes: - - ./mariadb:/var/lib/mysql:Z + - mariadb:/var/lib/mysql:Z healthcheck: test: ["CMD", "mariadb-admin", "ping", "-h", "localhost", "-uroot", "-prootpassword"] interval: 10s @@ -52,3 +52,6 @@ services: db: condition: service_healthy restart: true + +volumes: + mariadb: \ No newline at end of file From 6289ed9f7ee1084b566d74c7a42bdd48b67e64b3 Mon Sep 17 00:00:00 2001 From: Vincent Mahnke Date: Sat, 25 Oct 2025 15:51:38 +0200 Subject: [PATCH 2/2] fix: Replaces external project reference --- data_handler/Containerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data_handler/Containerfile b/data_handler/Containerfile index 5cdf7b9..342ae74 100644 --- a/data_handler/Containerfile +++ b/data_handler/Containerfile @@ -1,5 +1,5 @@ -FROM ghcr.io/asohh/fedora-minimal-containers/php-cli:43 -RUN microdnf install -y php-mysqli php-bcmath php-xml python-lxml gunzip https://raw.githubusercontent.com/rpmsphere/x86_64/master/d/dcron-4.5-7.1.x86_64.rpm && microdnf clean all +FROM quay.io/fedora/fedora-minimal:43 +RUN microdnf install -y php-cli php-mysqli php-bcmath php-xml python-lxml gunzip https://raw.githubusercontent.com/rpmsphere/x86_64/master/d/dcron-4.5-7.1.x86_64.rpm && microdnf clean all COPY ./utils/* /opt/ COPY ./data_init/*.sql /opt/init/init.sql