বিনামূল্যে কনভার্টার
Docker কমান্ড চিট শিট
ব্যাপক Docker কমান্ড চিট শিট। উদাহরণ, বিবরণ এবং এক-ক্লিক কপি সহ 70+ প্রয়োজনীয় Docker কমান্ড অনুসন্ধান করুন।
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সম্পর্কিত টুলস
সব টুল দেখুনGit কমান্ড চিট শিট
ব্যাপক Git কমান্ড চিট শিট। উদাহরণ, বিবরণ এবং এক-ক্লিক কপি সহ ৮০+ প্রয়োজনীয় Git কমান্ড অনুসন্ধান করুন।
Vim কমান্ড চিট শিট
ব্যাপক Vim কমান্ড চিট শিট। 80+ প্রয়োজনীয় Vim কমান্ড উদাহরণ, বিবরণ এবং এক-ক্লিক কপি সহ অনুসন্ধান করুন।
Linux / Bash কমান্ড চিট শিট
Linux ও Bash কমান্ডের ব্যাপক চিট শিট। উদাহরণ, বিবরণ ও এক-ক্লিক কপিসহ ৮০+ প্রয়োজনীয় কমান্ড অনুসন্ধান করুন।
SQL কোয়েরি ফরম্যাটার ও হাইলাইটার
আপনার ব্রাউজারে তাৎক্ষণিকভাবে SQL কোয়েরি ফরম্যাট, সুন্দর ও সিনট্যাক্স-হাইলাইট করুন। বিনামূল্যে, নিরাপদ, আপলোডের প্রয়োজন নেই।