Docker Commands
-
To enter into the container with bash prompt, use the following command:
$docker exec -it <container name> bash
-
To Build the image:
ibssbuild.sh
-
To List the images:
docker images
-
To List the containers:
docker ps -a
-
To start the container:
docker start <container_name>
-
To run the container:
ibssrun.sh
-
To stop the container & remove it:
docker rm -f <Container_name>
-
To remove the image:
docker rmi -f <Image_name>
-
To update folder ownership
sudo chown -R insbridge:insbridge <FOLDER_NAME>