Skip to content

Instantly share code, notes, and snippets.

@Saigut
Saigut / docker_cmd.md
Last active January 30, 2024 07:24
Docker 实用命令

Docker 实用命令

安装

Ubuntu 安装 docker:

  sudo apt-get update && \
  sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common && \
  curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - && \
  sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" && \
  sudo apt-get update && \
 sudo apt-get install -y docker-ce