2026-04-09 16:09:23 +02:00
..
2026-04-09 15:59:03 +02:00
2026-04-09 16:09:23 +02:00
2026-04-07 14:45:36 +02:00
2026-03-25 22:37:18 +01:00
2026-03-30 12:36:20 +02:00
2026-03-23 13:17:41 +01:00
2026-03-30 12:36:20 +02:00
2026-03-28 13:32:51 +01:00
2026-04-09 16:05:38 +02: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