How to stop builtin web server in Ubuntu Budgie LTS 20.04 (minimal installation)?

If I want to run docker-compose yaml files which run a web server and proxy I get Error starting userland proxy: listen tcp 0.0.0.0:8080: bind: address already in use. In Ubuntu Gnome I usually simply had to disable the builtin nginx with sudo service nginx stop. How can I workaround this issue in Ubuntu Budgie?

You’ll need to find the process that’s taken that port - thinks its something like

sudo netstat -pna | grep 8080

or possibly

sudo netstat -nlp | grep 8080

Once you’ve found that then kill the process / stop the service that’s started it.