In this article, we'll explain how to install Portainer on AlmaLinux 8 with Docker.
Portainer is powerful, open-source toolset that allows you to easily build and manage containers in Docker, Swarm, Kubernetes and Azure ACI. It works by hiding the complexity that makes managing containers hard, behind an easy to use GUI.
Prerequisites
- AlmaLinux 8 installed dedicated server or KVM VPS.
- A root user access or normal user with administrative privileges.
- Add A record of your preferred domain like port.example.com
Install Portainer on AlmaLinux 8 with Docker
1. Keep the server up to date
# dnf update -y
2. Install Docker CE
First, install Docker CE dependencies using following command:
# dnf install -y yum-utils device-mapper-persistent-data
Next, add docker repository
# yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo
To install Docker, simply run:
# dnf install docker-ce -y
Start and enable docker service
# systemctl start docker && systemctl enable docker
3. Create a container
We'll show you two ways to deploy the container.
- If you want to use domain name to access Portainer, use following command to deploy the container:
# docker run --restart always -d --name=portainer -v /var/run/docker.sock:/var/run/docker.sock -v /vol/portainer/data:/data -e VIRTUAL_HOST=port.example.com -e VIRTUAL_PORT=9000 portainer/portainer-ce -H unix:///var/run/docker.sock
- -v /var/run/docker.sock:/var/run/docker.sock means mounting /var/run/docker.sock to the container so portainer can control the Docker.
- -v /vol/portainer/data:/data means storing data of portainer on directory /vol/portainer/data.
- port.example.com is your domain to access the portainer.
- If you want to access Portainer using server IP, use following command to deploy the container:
# docker volume create portainer_data
# docker run -d -p 8000:8000 -p 9000:9000 --name=portainer --restart=always -v /var/run/docker.sock:/var/run/docker.sock -v portainer_data:/data portainer/portainer-ce
4. Configure Reverse Proxy for Portainer (Optional if you will use domain name)
Caddyfile is a reverse proxy server. It is necessary to secure the connection to prevent network hijacking. Caddyfile can obtains and automatically maintains SSL certificate.
Create a Caddyfile. Caddyfile is a document containing configs for your sites:
# mkdir -p /vol/caddy/configs
# vi /vol/caddy/configs/Caddyfile
Add following content:
port.example.com {
tls youremail@example.com
reverse_proxy portainer:8000
}
Replace: port.example.com with your domain name and youremail@example.com with your actual email id.
Save and exit.
Finally, create a Caddy container using following command:
# docker run --restart always -d -p 80:80 -p 443:443 -v "/vol/caddy/data:/data/caddy" -v "/vol/caddy/configs:/etc/caddy" --link portainer --name caddy caddy
- -p 80:80 -p 443:443 means publish its 80 and 443 port to your host so you can access it with those ports.
- -v "/vol/caddy/data:/data/caddy" means mount caddy working directory to your host to persist data such as certificates.
- -v "/vol/caddy/configs:/etc/caddy" means mount caddy configuration directory to your host to persist configurations.
- --link portainer means link container caddy with portainer so they can access with each other.
5. Access Portainer
Navigate to your browser and access the Portainer by using either your domain or server IP and set admin password and finish the installment.
That's it. The installation has been completed successfully.
In this article, we've have seen how to install Portainer on AlmaLinux 8 with Docker.
Top comments (0)