DEV Community

Jean Dias
Jean Dias

Posted on • Edited on

Install Docker on Mageia 9

This is a fast tutorial to install Docker on Mageia 9.

I used Mandriva until 2010, and now I solved install the Mageia, project based on Madriva.

  1. To install Docker I used DNF package manager:

dnf install docker docker-containerd docker-compose docker-buildx

  1. I started and enable the docker service:

sudo systemctl start docker

sudo systemctl enable docker

Optional: I enable Docker to use with my user:

sudo usermod -aG docker $USER

Done, Docker working!

Top comments (0)

Playwright CLI Flags Tutorial

5 Playwright CLI Flags That Will Transform Your Testing Workflow

  • --last-failed: Zero in on just the tests that failed in your previous run
  • --only-changed: Test only the spec files you've modified in git
  • --repeat-each: Run tests multiple times to catch flaky behavior before it reaches production
  • --forbid-only: Prevent accidental test.only commits from breaking your CI pipeline
  • --ui --headed --workers 1: Debug visually with browser windows and sequential test execution

Learn how these powerful command-line options can save you time, strengthen your test suite, and streamline your Playwright testing experience. Practical examples included!

Watch Video 📹️

👋 Kindness is contagious

If this post resonated with you, feel free to hit ❤️ or leave a quick comment to share your thoughts!

Okay