Trace: Docker

Docker

This is an old revision of the document!


Docker

I use Fedora as baseline, thus all the instructions consider it :-)

Fedora provides Docker support using Podman or Docker CE. We will stick with Docker CE for now, as provided by package moby-engine (moby is the mascot of Docker):

  1. dnf install moby-engine
  2. systemctl enable docker

Check if Docker is running:

  1. curl –unix-socket /var/run/docker.sock http://localhost/version

Allow other users than root to use Docker by adding them to docker group:

  1. groupadd docker
  2. usermod -aG docker <username>
  1. dnf install docker-compose
work/docker.1638999682.txt.gz · Last modified: 2021/12/08 21:41 by magsilva