Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

By default (for security reasons), you should not have access to docker, even if you have access to the host machine. To check whether you have access, log into the host machine and run any docker command, e.g.:

 

Code Block
languagepy
themeMidnight
titleShow docker images/processes
linenumberstrue
collapsetrue
# Get a list of all the docker images
docker images 
# or
docker image list 

# To view a list of docker processes
docker ps

 

> docker images 

> docker image list 

...

ps

If you get an error message complaining about access rights, it means that you are not part of the docker group on the machine. Ask your supervisor to relay a request to one of the engineers at IDI, who should be able to grant you the necessary privileges.

...