Installation and Configuration of phpipam

Installation and Configuration of phpipam

Installation and Configuration of Docker

RHEL/CentOS

Install docker:

sudo dnf remove podman -y
sudo dnf config-manager --add-repo=https://download.docker.com/linux/centos/docker-ce.repo
sudo dnf install docker-ce docker-ce-cli containerd.io -y
sudo systemctl enable --now docker
sudo firewall-cmd --zone=public --add-masquerade --permanent
sudo firewall-cmd --reload

Install docker-compose:

sudo curl -L "https://github.com/docker/compose/releases/download/1.27.4/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
sudo usermod -aG docker blair