Open5gs: portainer - manajemen docker

From OnnoWiki
Revision as of 08:31, 1 September 2023 by Onnowpurbo (talk | contribs) (Created page with "Install docker apt-get update && sudo apt-get upgrade apt-get install docker.io systemctl start docker systemctl enable docker systemctl status docker Install portaine...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Install docker

apt-get update && sudo apt-get upgrade
apt-get install docker.io
systemctl start docker
systemctl enable docker
systemctl status docker

Install portainer

docker pull portainer/portainer-ce:latest
docker run -d -p 9000:9000 --restart always -v /var/run/docker.sock:/var/run/docker.sock portainer/portainer-ce:latest

The above command will start a Portainer container in the background and bind it to the port 9000.

Akses Web

http://your-IP-address:9000