opening multiple ports when starting/creating a docker container
xxxxxxxxxx
docker create --name new_ubuntu -it -p 8080:8080 -p 15672:15672 -p 5432:5432 ubuntu:latest bash
# or When you've already pulled the image from docker hub
docker run --interactive --tty --detach -p 8080:8080 -p 4444:444 -p 8443:8443 <image_id>
#then
docker exec --interactive --tty <running_container_id> /bin/bash