Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

1- pull the container:

sudo docker pull nginx


2- Start the container ( listening on port )

sudo docker run -d --name mynginx3 -p 8080:80 nginx


3- information about 

sudo docker info mynginx


4- listening port: 8080 >>> send to the container on port 80

jlk@ubuntu:~$ sudo docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
818616837c2b nginx "nginx -g 'daemon off" 33 minutes ago Up 33 minutes 0.0.0.0:8080->80/tcp mynginx3
f69ae6288204 nginx "nginx -g 'daemon off" About an hour ago Up About an hour 80/tcp mynginx





  • No labels