Compare commits

..

No commits in common. "6289ed9f7ee1084b566d74c7a42bdd48b67e64b3" and "55cc21f83d7051e3b77387832bd64f247fe4042d" have entirely different histories.

2 changed files with 3 additions and 6 deletions

View file

@ -1,5 +1,5 @@
FROM quay.io/fedora/fedora-minimal:43 FROM ghcr.io/asohh/fedora-minimal-containers/php-cli: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 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
COPY ./utils/* /opt/ COPY ./utils/* /opt/
COPY ./data_init/*.sql /opt/init/init.sql COPY ./data_init/*.sql /opt/init/init.sql

View file

@ -10,7 +10,7 @@ services:
ports: ports:
- "3306:3306" - "3306:3306"
volumes: volumes:
- mariadb:/var/lib/mysql:Z - ./mariadb:/var/lib/mysql:Z
healthcheck: healthcheck:
test: ["CMD", "mariadb-admin", "ping", "-h", "localhost", "-uroot", "-prootpassword"] test: ["CMD", "mariadb-admin", "ping", "-h", "localhost", "-uroot", "-prootpassword"]
interval: 10s interval: 10s
@ -52,6 +52,3 @@ services:
db: db:
condition: service_healthy condition: service_healthy
restart: true restart: true
volumes:
mariadb: