Hi IrritableOwl63
Yes this seems like a docker setup issue 🙂
either run the agent with sudo (not really recommended 😉 ) or add to suduers :
https://docs.docker.com/engine/install/linux-postinstall/
I think perhaps as standard, the group docker
is already created.
The bit that isn't done is making your user part of that group.
Thanks VivaciousPenguin66 and AgitatedDove14 . All is good now.
I dip in and out of Docker, and that one gets me almost every time!
You need to make sure the user is part of the docker
group.
Follow these commands post install of Docker engine, and don't forget to restart the terminal session for the changes to take full effect .
` sudo groupadd docker
sudo usermod -aG docker ${USER} `Don't install Docker engine with root, your sysadmin will have kittens!