2026-03-28 14:52:16 +01:00
..
2026-03-27 21:04:34 +01:00
2026-03-28 03:02:27 +01:00
2026-03-23 19:57:02 +01:00
2026-03-25 22:37:18 +01:00
2026-03-20 12:34:55 +01:00
2026-03-23 13:17:41 +01:00
2026-03-28 13:32:51 +01:00
2026-03-28 14:52:16 +01:00
2026-03-27 18:21:45 +01:00
2026-03-27 18:21:45 +01:00

useradd -m sfj
usermod -aG sudo sfj
passwd sfj

https://docs.docker.com/engine/install/debian/#install-using-the-repository

# Add Docker's official GPG key:
sudo apt update
sudo apt install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc

# Add the repository to Apt sources:
sudo tee /etc/apt/sources.list.d/docker.sources <<EOF
Types: deb
URIs: https://download.docker.com/linux/debian
Suites: $(. /etc/os-release && echo "$VERSION_CODENAME")
Components: stable
Signed-By: /etc/apt/keyrings/docker.asc
EOF

sudo apt update

 sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin