fix: replace mysql-server with mariadb-server for Debian 12/13 compatibility

- Use mariadb-server instead of mysql-server (works on both Ubuntu and Debian)
- Update mysql_service to mariadb for proper service management
- Update docker/Dockerfile and start-services.sh for MariaDB
This commit is contained in:
Sebastian Palencsar
2026-05-06 12:59:15 +02:00
parent 605b4e8c7b
commit 1fa863f107
3 changed files with 7 additions and 7 deletions

View File

@@ -1,8 +1,8 @@
#!/bin/bash
# Services für LEMP-Stack starten
# MySQL starten
service mysql start
# MySQL/MariaDB starten
service mysql start || service mariadb start
# PHP-FPM starten
service php8.4-fpm start