Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Hi, this no longer works. I get this error after adding the repos and doing apt update
W: Failed to fetch https://dl.yarnpkg.com/debian/dists/stable/main/binary-amd64/Packages The HTTP server sent an invalid reply header
W: Failed to fetch https://download.docker.com/linux/debian/dists/buster/stable/binary-amd64/Packages The HTTP server sent an invalid reply header
W: Failed to fetch https://download.docker.com/linux/debian/dists/jessie/stable/binary-amd64/Packages The HTTP server sent an invalid reply header
E: Some index files failed to download. They have been ignored, or old ones used instead.
1.- Debian doesn’t have sudo by default. 2.- I don’t found usermod command on Buster.
This comment has been deleted
I get an error on Step: 4
~$ docker run hello-world Unable to find image ‘hello-world:latest’ locally latest: Pulling from library/hello-world 0e03bdcc26d7: Pull complete Digest: sha256:e7c70bb24b462baa86c102610182e3efcb12a04854e8c582838d92970a09f323 Status: Downloaded newer image for hello-world:latest docker: Error response from daemon: OCI runtime create failed: container_linux.go:349: starting container process caused “process_linux.go:449: container init caused "rootfs_linux.go:58: mounting \"proc\" to rootfs \"/var/lib/docker/overlay2/f3f1aa1f176cffa1c2d31a6204fcab1db585c74e47a9c854e9d306cb5b313141/merged\" at \"/proc\" caused \"permission denied\""”: unknown. ERRO[0002] error waiting for container: context canceled
A very nice tutorial.
Hint for all: before proceeding make sure no older version of docker is already installed on your system. In that case kindly uninstall the older version. For more information refer this link
Hi,
For Debian 11 (Bullseye) the handling of GPG keys for package repositories has changed. By combining the information here, with this page: https://www.linuxuprising.com/2021/01/apt-key-is-deprecated-how-to-add.html I came up with a solution.
Replace these commands:
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -
sudo add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable"
with these (run them as root):
wget -O- https://download.docker.com/linux/debian/gpg | gpg --dearmor > /usr/share/keyrings/docker-archive-keyring.gpg
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg ] https://download.docker.com/linux/debian $(lsb_release -cs) stable" > /etc/apt/sources.list.d/docker.list
The rest of the (really good!) tutorial is the same.
For the initial set up of the environment follow:
Hi!
I tested on Debian 11 (Bangalore data center):
apt upgrade (my added step to tutorial).Thanks Mr. Brian Hogan, best regards from Venezuela 🇻🇪.
Thank you very much for this tutorial.
I have a Debian server with ISP Config
Distributor ID: Debian Description: Debian GNU/Linux 10 (buster) Release: 10 Codename: buster
I’d like to know if I can install Docker on a server already running ISPConfig, without any risk to damage/break the existing ISPConfig install.
(NB : I don’t want to install ISPC in a Docker container, I’d like to run Docker and ISPC, in parallel)