Created
July 17, 2024 14:58
-
-
Save Nakilon/1deab9736a3609e3171d84251adaa989 to your computer and use it in GitHub Desktop.
ubuntu
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
docker | |
install | |
(https://stackoverflow.com/q/61401626/322020) | |
$ sudo apt-get update | |
$ sudo apt install -y docker.io | |
disable shutting down on Ubuntu's "daily upgrade" | |
$ sudo apt-mark hold docker.io | |
check autorun | |
$ sudo systemctl is-enabled docker.service | |
$ sudo systemctl is-enabled containerd.service | |
ability to not prepend sudo | |
$ sudo usermod -aG docker $USER # 'Log out and log back in | |
so that your group membership is re-evaluated.' | |
$ newgrp docker | |
check: $ docker ps |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment