Home>Article>Operation and Maintenance> How to enter the docker container
How to enter the docker container?
First use the following command to view the container ID (CONTAINER ID):
docker ps -a
Then use the following command to enter container, you can use the bash command to browse the files in the container:
docker exec -it [CONTAINER ID] bash
Some images do not have the bash command, you can use the corresponding Shell, such as sh
docker exec -it [CONTAINER ID] sh
Recommended: "docker tutorial"
The above is the detailed content of How to enter the docker container. For more information, please follow other related articles on the PHP Chinese website!