Docker
Pulling an image on Docker:
On your host box, run the command.
To see all the Docker images installed, issue the command:
To start the docker pulled CentOS, we need to issue a command to the OS to get a thread started. We can do this by running the following command:
The above command does the following things −
Runs the CentOS Docker image.
Runs the image in interactive mode by using the -it option.
Runs the /bin/bash command as the initial process.
Docker Example Building and Usage:
Clone this repository
Build the SpoolSploit Docker container image
Create and start the SpoolSploit Docker container
Attach to the container
Docker Compose
Last updated