Blog
Docker Post-installation steps for Linux
- June 19, 2022
- Posted by: ElastiCourse
- Category: How-To Docker
No Comments
!– wp:paragraph –> The following commands are required for Docker post-installation to allow the execution of Docker commands without using sudo:
sudo groupadd docker
sudo usermod -aG docker $USER
newgrp docker
sudo reboot
After the host reboots, you should be able to run commands such as docker ps or docker run without sudo.Leave a Reply Cancel reply
You must be logged in to post a comment.