侧边栏壁纸
  • 累计撰写 99 篇文章
  • 累计创建 54 个标签
  • 累计收到 1 条评论

目 录CONTENT

文章目录

PVE lxc debian docker-compose install

FlyingEagle
2022-10-09 / 0 评论 / 0 点赞 / 33 阅读 / 701 字

Newly build lxc debian enable nest in advance option

scripts order below

apt update && apt upgrade

Installing required packages

apt install apt-transport-https ca-certificates curl gnupg2 software-properties-common

add the docker gpg key

curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add -

add the docker repository

add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable"

another apt update

apt update

install docker

apt install docker-ce

check that it’s running

systemctl status docker

more packages

apt install cifs-utils docker-compose

check that docker is functioning properly

docker run hello-world

original from https://www.youtube.com/watch?v=faoIeeZZ6ws&ab_channel=H2DC-HowtodoComputers

0

评论区