Added: docker-compose for mariadb and phpmyadmin

This commit is contained in:
Filip Rojek 2024-12-25 23:37:07 +01:00
parent 3144078860
commit d7b8aba072

16
docker-compose.yaml Normal file
View File

@ -0,0 +1,16 @@
services:
mariadb:
image: mariadb:11.4 # LTS at 25. 12. 2025
restart: always
environment:
MARIADB_ROOT_PASSWORD: root
ports:
- 3306:3306
phpmyadmin:
image: phpmyadmin
restart: always
ports:
- 8080:80
environment:
- PMA_ARBITRARY=1