docker bash code example
Example 1: docker access container
docker exec -it <mycontainer> bash
docker exec -it <mycontainer> sh ##for alpine
Example 2: docker bash command
docker exec -it <container> bash
Example 3: docker interactive shell
docker exec -it [containerid/name] [shell]
#Example
docker exec -it fa80b69 bash
#if its an apline container use "sh" instead of "bash"
Example 4: how to bash into docker container
docker exec -it nginx /bin/bash
Example 5: docker exec bash
//For executing commands in the container
docker exec -it <CONTAINER_NAME> bash
Example 6: docker command
docker ps # current containers
docker run # create and start the container
docker create # create container
dokcer exec # to run commnads in container for once
docker volume # create a docker volume
docker network # create a docker network
docker rm # remove container
docker images # list the images
docker rmi # remove image
docker build # build a new image from dockerfile
docker push # push your image to docker repo
docker pull # download an image from docker repo
docker commit # create an image from container