Discover. Learn. Enjoy
Run essential utilities in one place

📸 Camera

🎥 Record Video

📧 Email

📲 WhatsApp

🐳 Docker Commands & Uses

Run a container interactively:
docker run -it ubuntu
Start a new Ubuntu container with interactive shell.
List running containers:
docker ps
Show all currently running containers.
List all containers (including stopped):
docker ps -a
Show all containers, running or stopped.
Build an image from Dockerfile:
docker build -t myimage:latest .
Build a Docker image from the current directory.
List images:
docker images
Show all Docker images on your system.
Stop a running container:
docker stop <container_id>
Stop a running container by its ID or name.
Remove a container:
docker rm <container_id>
Delete a stopped container.
Remove an image:
docker rmi <image_id>
Delete a Docker image by its ID or name.
View container logs:
docker logs <container_id>
Show logs for a running container.
Execute a command in a running container:
docker exec -it <container_id> bash
Open a bash shell inside a running container.