Install Portainer CE for Managing Docker on CentOS 9

Install Portainer CE on CentOS 9

Learn how to install and configure Portainer CE on CentOS 9 for efficient Docker management. Follow our step-by-step guide with CLI examples to get started today.

Table of Contents

Introduction

Managing Docker containers efficiently can be challenging without a graphical interface. Portainer Community Edition (CE) simplifies this task by providing a user-friendly web interface for managing Docker environments. In this guide, we will walk you through the process of installing and configuring Portainer CE on CentOS 9.

Portainer CE is lightweight yet powerful, offering features such as:

  • A centralized dashboard for managing multiple Docker hosts
  • Secure remote access to containerized environments
  • User and role-based access control

By the end of this guide, you will have Portainer CE installed and configured to manage your Docker environment efficiently.

Prerequisites

Before installing Portainer CE, ensure that you meet the following prerequisites:

RequirementDescription
OSCentOS 9 (Stream)
User PrivilegesRoot or a user with sudo privileges
Installed SoftwareDocker Engine & Docker Compose
FirewallOpen ports 8000 & 9443 for web UI access

For this demonstration, we’ve configured our CentOS 9 server as follows:

HostnameIP AddressRAM (GB)CoresStorage (GB)OS
portainer.dev.naijalabs.net192.168.1.22642150CentOS Stream release 9

Updating System and Installing Docker

First, update the system packages and install Docker:

				
					sudo dnf update -y
				
			
				
					sudo dnf config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
				
			
				
					sudo dnf install -y docker-ce docker-ce-cli containerd.io
				
			

Enable and start the Docker service:

				
					sudo systemctl enable --now docker
				
			
				
					Created symlink /etc/systemd/system/multi-user.target.wants/docker.service → /usr/lib/systemd/system/docker.service.
				
			

Verify Docker installation:

				
					docker --version
				
			
				
					Docker version 28.0.1, build 068a01e
				
			

Installing Portainer CE

Step 1: Create a Volume for Portainer Data

Portainer stores its configuration and data in a volume. Create it with:

				
					sudo docker volume create portainer_data
				
			
				
					portainer_data
				
			

Step 2: Deploy Portainer as a Docker Container

Run the following command to start Portainer:

				
					sudo docker run -d --name=portainer --restart=always -p 8000:8000 -p 9443:9443 -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce:latest
				
			
				
					Unable to find image 'portainer/portainer-ce:latest' locally
latest: Pulling from portainer/portainer-ce
436768c74267: Pull complete 
d61825c69234: Pull complete 
04de093ad5ed: Pull complete 
a528983d077c: Pull complete 
26eb502a78ed: Pull complete 
b2724536dfda: Pull complete 
5b45cfb2ea0c: Pull complete 
20b115ea6339: Pull complete 
8e73efb50b28: Pull complete 
4f4fb700ef54: Pull complete 
Digest: sha256:99c3047d44991af08f2a34df16e69ae2654bee43444b2e9857aa6b5864c4f602
Status: Downloaded newer image for portainer/portainer-ce:latest
4a057e1506970fbc2c866c45b3629b9b86df9a2c194e4e81cf15aec21b16d1aa
				
			

Ensure the necessary ports are open to allow traffic:

				
					sudo firewall-cmd --permanent --add-port=8000/tcp --add-port/443/tcp --add-port=9443/tcp && sudo firewall-cmd --reload
				
			

Step 3: Access Portainer Web UI

Once the container is running, access the Portainer web interface by opening your browser and navigating to (https://<server-ip>:9443):

Install Portainer CE on CentOS 9

Photo by admingeek from Infotechys

Click on the Advanced button and the “Proceed to <server-ip>(unsafe)” link to continue. Create an admin user by setting a secure password of at least 12 characters to log in, then select the local Docker environment to manage containers.

Install Portainer CE on CentOS 9

Photo by admingeek from Infotechys

👀NOTE: In the event, you’re presented with a page (below) reporting a disabled portainer (timed out) instance due to security reasons, simply run the following command:

Install Portainer CE on CentOS 9

Photo by admingeek from Infotechys

Restart portainer container:

				
					sudo docker restart portainer
				
			

Configuring Portainer

Adding Remote Docker Environments

If you have multiple Docker hosts, you can add them to Portainer by navigating to “Environments” and clicking the “Add environment” button.

Portainer Environments Page: Adding Environments

Photo by admingeek from Infotechys

Managing Containers, Images, and Networks

Portainer allows you to create, stop, restart, and remove containers with ease. You can also manage Docker images and networks through the interface.


Advanced Configuration

Enabling TLS Security for Portainer

To secure Portainer, you should enable TLS:

Generate SSL Certificates:

				
					sudo openssl req -x509 -newkey rsa:4096 -keyout portainer.key -out portainer.crt -days 365 -nodes
				
			

Move the certificates to a secure location:

				
					sudo mkdir -p /opt/portainer/certs
				
			
				
					sudo mv portainer.key portainer.crt /opt/portainer/certs/
				
			

Restart Portainer with TLS enabled:

				
					docker run -d \
  --name=portainer \
  --restart=always \
  -p 8000:8000 -p 9443:9443 \
  -v /var/run/docker.sock:/var/run/docker.sock \
  -v portainer_data:/data \
  -v /opt/portainer/certs:/certs \
  -e CERT_PATH=/certs/portainer.crt \
  -e KEY_PATH=/certs/portainer.key \
  portainer/portainer-ce:latest
				
			

Setting Up Role-Based Access Control

For multi-user environments, Portainer allows you to define user roles:

  • Administrator: Full access to all features
  • Standard User: Limited access to assigned environments
  • Endpoint Administrator: Manage assigned Docker hosts

Navigate to Users & Teams in the Portainer dashboard to assign roles.

Portainer Dashboard: Users & Teams Selection

Photo by admingeek from Infotechys


Security Considerations

For enhanced security, consider the following:

  • Use HTTPS by configuring SSL certificates (a must-have in production environments).
  • Restrict access to the Portainer UI using a firewall.
  • Regularly update Portainer to the latest version.
  • Enable two-factor authentication (2FA) for added security.

Troubleshooting

IssueSolution
Portainer UI not accessibleEnsure ports 8000 and 9443 are open in the firewall using sudo firewall-cmd --add-port=9443/tcp --permanent
Unable to connect to remote Docker hostVerify that the remote Docker API is enabled and accessible
Permission denied when running Docker commandsEnsure your user is part of the Docker group using sudo usermod -aG docker $USER

Conclusion

Portainer CE provides a powerful, easy-to-use web UI for managing Docker environments on CentOS 9. By following this guide, you now have a fully functional Portainer setup to streamline your container management tasks. Whether you’re deploying applications, monitoring container performance, or managing images and networks, Portainer makes Docker administration more intuitive.

Did you find this article useful? Your feedback is invaluable to us! Please feel free to share this post with those who may benefit and–your thoughts in the comments section below.


Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *