مفت کنورٹر
ڈاکر کمانڈز چیٹ شیٹ
جامع ڈوکر کمانڈ چیٹ شیٹ۔ مثالوں، وضاحتوں اور ایک کلک کاپی کے ساتھ 70+ ضروری ڈوکر کمانڈز تلاش کریں۔
docker run
Create and start a new container from an image
مثال:
docker run -d -p 80:80 --name web nginxdocker run -it
Run a container interactively with a terminal
مثال:
docker run -it ubuntu bashdocker run --rm
Run a container and remove it automatically when it exits
مثال:
docker run --rm alpine echo 'hello'docker run -e
Set environment variables in a container
مثال:
docker run -e NODE_ENV=production node:18docker run -v
Mount a volume or bind mount into a container
مثال:
docker run -v /host/path:/container/path nginxdocker start
Start one or more stopped containers
مثال:
docker start my-containerdocker stop
Stop one or more running containers gracefully
مثال:
docker stop my-containerdocker restart
Restart one or more containers
مثال:
docker restart my-containerdocker rm
Remove one or more stopped containers
مثال:
docker rm my-containerdocker rm -f
Force-remove a running container
مثال:
docker rm -f my-containerdocker ps
List running containers
مثال:
docker psdocker ps -a
List all containers including stopped ones
مثال:
docker ps -adocker exec
Run a command in a running container
مثال:
docker exec -it my-container bashdocker logs
Fetch logs from a container
مثال:
docker logs -f --tail 100 my-containerdocker inspect
Return low-level information about a container or image
مثال:
docker inspect my-containerdocker stats
Display live resource usage statistics for containers
مثال:
docker stats my-containerdocker top
Display running processes inside a container
مثال:
docker top my-containerdocker pause
Pause all processes within a container
مثال:
docker pause my-containerdocker unpause
Unpause all processes within a paused container
مثال:
docker unpause my-containerdocker rename
Rename an existing container
مثال:
docker rename old-name new-namedocker kill
Kill a running container by sending a signal
مثال:
docker kill --signal=SIGTERM my-containerdocker cp
Copy files between a container and the host filesystem
مثال:
docker cp my-container:/app/config.json ./config.jsondocker attach
Attach local I/O streams to a running container
مثال:
docker attach my-containerdocker pull
Download an image from a registry
مثال:
docker pull nginx:latestdocker push
Upload an image to a registry
مثال:
docker push myuser/myimage:v1.0docker build
Build an image from a Dockerfile
مثال:
docker build -t myapp:latest .docker build --no-cache
Build an image without using the layer cache
مثال:
docker build --no-cache -t myapp:latest .docker images
List all locally available images
مثال:
docker imagesdocker rmi
Remove one or more images
مثال:
docker rmi nginx:old myimage:v1docker tag
Create a tag referencing a source image
مثال:
docker tag myapp:latest myuser/myapp:v2.0docker history
Show the history of an image's layers
مثال:
docker history nginx:latestdocker save
Save an image to a tar archive
مثال:
docker save -o myimage.tar myapp:latestdocker load
Load an image from a tar archive
مثال:
docker load -i myimage.tardocker import
Import a tarball to create a filesystem image
مثال:
docker import mycontainer.tar myimage:importeddocker export
Export a container's filesystem as a tar archive
مثال:
docker export my-container > mycontainer.tardocker commit
Create a new image from a container's changes
مثال:
docker commit my-container myimage:snapshotdocker image prune
Remove unused (dangling) images
مثال:
docker image prune -adocker network create
Create a new network
مثال:
docker network create --driver bridge my-networkdocker network ls
List all networks
مثال:
docker network lsdocker network rm
Remove one or more networks
مثال:
docker network rm my-networkdocker network inspect
Show detailed information about a network
مثال:
docker network inspect my-networkdocker network connect
Connect a running container to a network
مثال:
docker network connect my-network my-containerdocker network disconnect
Disconnect a container from a network
مثال:
docker network disconnect my-network my-containerdocker network prune
Remove all unused networks
مثال:
docker network prunedocker volume create
Create a named volume
مثال:
docker volume create my-volumedocker volume ls
List all volumes
مثال:
docker volume lsdocker volume rm
Remove one or more volumes
مثال:
docker volume rm my-volumedocker volume inspect
Display detailed information about a volume
مثال:
docker volume inspect my-volumedocker volume prune
Remove all unused local volumes
مثال:
docker volume prunedocker compose up
Create and start all services defined in compose file
مثال:
docker compose up -ddocker compose down
Stop and remove containers, networks from compose
مثال:
docker compose down --volumesdocker compose ps
List containers for a compose project
مثال:
docker compose psdocker compose logs
View output from compose service containers
مثال:
docker compose logs -f webdocker compose build
Build or rebuild services defined in compose file
مثال:
docker compose build --no-cache webdocker compose pull
Pull service images defined in the compose file
مثال:
docker compose pulldocker compose restart
Restart service containers
مثال:
docker compose restart webdocker compose exec
Execute a command in a running service container
مثال:
docker compose exec web bashdocker compose run
Run a one-off command on a service
مثال:
docker compose run --rm web npm testdocker compose stop
Stop running containers without removing them
مثال:
docker compose stop webdocker compose config
Validate and view the merged compose configuration
مثال:
docker compose configdocker info
Display system-wide Docker information
مثال:
docker infodocker version
Show the Docker client and daemon version
مثال:
docker versiondocker system df
Show disk usage by Docker objects
مثال:
docker system df -vdocker system prune
Remove all unused Docker resources at once
مثال:
docker system prune -a --volumesdocker events
Stream real-time events from the Docker daemon
مثال:
docker events --filter type=containerdocker login
Log in to a Docker registry
مثال:
docker login registry.example.comdocker logout
Log out from a Docker registry
مثال:
docker logout registry.example.comdocker search
Search Docker Hub for images
مثال:
docker search --filter stars=100 nginxdocker context ls
List available Docker contexts
مثال:
docker context lsdocker context use
Switch the active Docker context
مثال:
docker context use my-remote-hostمتعلقہ ٹولز
تمام ٹولز دیکھیںگٹ کمانڈز چیٹ شیٹ
جامع گٹ کمانڈ چیٹ شیٹ۔ مثالوں، تفصیل اور ایک کلک کاپی کے ساتھ 80+ ضروری گٹ کمانڈز تلاش کریں۔
ویم کمانڈز چیٹ شیٹ
جامع ویم کمانڈ چیٹ شیٹ۔ مثالوں، وضاحتوں اور ایک کلک کاپی کے ساتھ 80+ ضروری Vim کمانڈز تلاش کریں۔
لینکس / باش کمانڈ چیٹ شیٹ
جامع لینکس اور باش کمانڈ چیٹ شیٹ۔ مثالوں، وضاحتوں اور ایک کلک کی کاپی کے ساتھ 80+ ضروری کمانڈز تلاش کریں۔
ایس کیو ایل فارمیٹر اور بیوٹیفائر
اپنے براؤزر میں SQL سوالات کو فوری طور پر فارمیٹ کریں، خوبصورت بنائیں اور صاف کریں۔ اپ لوڈ کی ضرورت نہیں — مکمل طور پر نجی اور مفت۔