https://blog.chapagain.com.np/set-up-php-development-environment-with-docker/
- PHP
- MySQL (database)
- Nginx (web server)
- PhpMyAdmin (database management tool)
Create and start docker containers in the foreground
docker-compose up
Create and start docker containers in the background
docker-compose up -d
Check docker-compose logs
docker-compose logs
List all the running/active containers
docker ps
Stop and Remove the containers
docker-compose down