Symfony is one of the best PHP framework for developers who want to build enterprise grade web application or any web services. Besides Symfony, Docker is one of the most necessary tooling every developers need. Docker containerized your App. So the question is, what can be the best way to run Symfony web application on Docker container? Since Symfony 5.x got released I tested it for one of our applications that I have developed. You have to remember, any kinds …
Tag: docker
Everybody is talking about Docker this days. Trust me, you should too. It’s the future for running application. Deploying your codes or application in a Docker container is going to be a very popular. So let’s see how to enable Docker in PhpStorm so you can debug your application from PhpStorm to Docker container easily. I am assuming that you already have Docker installed on your machine. Note: in this article I am using Ubuntu OS. So adjust things accordingly. …
Some important commands for Docker containers and images. It’s useful for delete all docker containers and images altogether at once. # Stop all docker containers docker stop $(docker ps -a -q) #Remove all docker containers docker rm $(docker ps -a -q) # Delete all images docker rmi $(docker images -q)