Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to run Docker in Fedora 32

2025-02-23 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Servers >

Share

Shulou(Shulou.com)06/01 Report--

This article is to share with you about how to run Docker in Fedora 32. The editor thinks it is very practical, so I share it with you. I hope you can get something after reading this article.

Step 1: system preparation

In the last two versions of Fedora, the operating system has migrated to two new technologies: CGroups and NFTables for firewalls. Although the details of these new technologies are beyond the scope of this tutorial, unfortunately, Docker does not support these new technologies yet. Therefore, you have to make some changes to use Docker on Fedora.

Enable the old CGroups

Fedora still supports the previous implementation of CGroups, which can be enabled using the following command:

Sudo grubby-update-kernel=ALL-args= "systemd.unified_cgroup_hierarchy=0"

Whitelist Docker in the firewall

In order for Docker to have network access, two commands are required:

Sudo firewall-cmd-permanent-zone=trusted-add-interface=docker0

Sudo firewall-cmd-permanent-zone=FedoraWorkstation-add-masquerade

The first command adds the Docker interface to the trusted environment, which allows Docker to establish a remote connection. The second command will allow Docker to establish a local connection. This is especially useful when you have multiple Docker containers as your development environment.

Step 2: install Moby

Moby is the open source white-card version of Docker. It is based on the same code, but without a trademark. It is included in the main repository of Fedora, so it is easy to install:

Sudo dnf install moby-engine docker-compose

This will install moby-engine, docker-compose, containerd, and other related libraries. After the installation is complete, you must enable the system-level daemon to run Docker:

Sudo systemctl enable docker

Step 3: restart and test

To ensure that all systems and settings are handled correctly, you must restart your computer now:

Sudo systemctl reboot

After that, you can use the Docker hello-world package to verify the installation:

Sudo docker run hello-world

Unless you have a problem, you will see greetings from Docker!

Run as an administrator

Optionally, you can now also add users to the Docker group account so that you can start the Docker image without entering sudo:

Sudo groupadd docker

Sudo usermod-aG docker $USER

Log out and log in for the changes to take effect. If the idea of running the container with administrator privileges worries you, then you should study Podman.

The above is how to run Docker in Fedora 32. The editor believes that there are some knowledge points that we may see or use in our daily work. I hope you can learn more from this article. For more details, please follow the industry information channel.

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Servers

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report