Most common Docker conmmands:
- Container Management
These commands are used to control the lifecycle of your containers (like php-devblog or nginx-gateway).
docker ps
Lists all running containers.
docker ps -a
Lists all containers, including those that are stopped or crashing (useful for debugging “Restarting” status).
docker stop
Gracefully stops a running container.
Continue reading “Docker commands”
