Light Docker LAMP is a fork of mattrayner/lamp with Apache, MySQL and PHP all in one handy package.
Apache: 2.4.41
MySQL: 8.0.36
PHP: 8.0.30
phpMyAdmin: 5.1.1
git clone https://github.com/marco19pulv/ldlamp.git
cd /home/docker/ldlamp
docker build -t ldlamp:latest -f ./Dockerfile .
docker run --name ldlamp-container -d -p "3000:80" ldlamp:latest
docker logs ldlamp-container
curl "http://127.0.0.1:3000/"
docker stop ldlamp-container
docker rm ldlamp-container
docker rmi ldlamp:latest