Belajar PODMAN & DOCKER

 1. download dekstop podman 

2. kemudian download repository images 

podman run -d -p 8080:80 nginx

3. install httpd 

podman run -d -p 8080:80 httpd

4. untuk jadikan cointainer nginx 

podman run -d -p 8080:80 -v D:\Podman:/usr/share/nginx/html nginx

5. untuk menjalankan cointainer node js 

podman run -d -p 8080:80 -v D:\Podman:/usr/src/app node index.js


Komentar