Question

How do I update the DO Docker droplet to enable ports 80 and 443?

I have set up new droplet using the DO droplet (https://marketplace.digitalocean.com/apps/docker. The documentation says that the default firewall for the Docker One-Click is UFW, but I can’t find a way easily enable ports 80 and 443.


Submit an answer


This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

Sign In or Sign Up to Answer

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

Accepted Answer

Hi @bsscdt ,

Try this command:

docker run -p 80:80 -p 443:443 --name nginx -d nginx

The --name should be the name of your docker container.If you don’t pull nginx yet,also run this before the command I mentioned to mapping 80/443 ports:

docker pull nginx

Regards, Shiroka

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up