Easy Install Docker On Debian 64 bit
This is using command line.
Easy way (Debian)
I found an easy way to install Docker on Debian 64 bit (arm64 and amd64). I just tested on Debian 12 Bookworm, didn't try on Arm platform. If you fail, may be Docker didn't provide the binary of your platform, for example Debian 32 bit.
$ apt update
$ apt upgrade
## need curl and apt-utils
$ curl -fsSL test.docker.com -o get-docker.sh && sh get-docker.sh
$ docker -v
⇒ version 27
Test Docker
$ sudo docker run hello-world ## docker need root
⇒ Hello from Docker!
If you see the Hello message, it is working.
macOS (Homebrew + Docker Desktop)
Homebrew only install the docker (client), you need a Docker daemon). Docker Desktop can start the Docker daemon. Docker Desktop is available for download, available in macOS, Windows and Linux platform.
$ brew install docker docker-compose
$ sudo docker run hello-world ## to test
You can use Colima (lima) + qemu to replace the Docker Desktop, it works.
No comments:
Post a Comment