Blog Home
Updated: 2023 Oct 09

Docker Cookbook

安装

$ sudo apt-get update
$ sudo apt-get install -y wget
$ sudo wget -qO- https://get.docker.com/ | sh

如果你想直接以一个非 root 用户的身份来运行 docker 命令,可以将该用户 添加到 docker 用户组,如下所示。

sudo gpasswd -a <user> docker

退出当前 shell 然后重新登录,或者重新启动一个新 shell,就能使用上面的配置了。

Comments:

Email questions, comments, and corrections to hi@smartisan.dev.

Submissions may appear publicly on this website, unless requested otherwise in your email.