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.
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!
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.
Hi @bsscdt ,
Try this command:
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:Regards, Shiroka
this may help…
Step 5 — Allowing Other Connections
At this point, you should allow all of the other connections that your server needs to respond to. The connections that you should allow depend on your specific needs. You already know how to write rules that allow connections based on an application profile, a service name, or a port; you already did this for SSH on port
22
. You can also do this for:sudo ufw allow http
orsudo ufw allow 80
sudo ufw allow https
orsudo ufw allow 443
sudo ufw allow ‘Apache Full’
sudo ufw allow ‘Nginx Full’
from https://www.digitalocean.com/community/tutorials/how-to-set-up-a-firewall-with-ufw-on-ubuntu-18-04