I want to run a spring-boot microservice on port number 443. I am creating this service using docker command
docker service create -p 443:8443 somerepo/someorg/some-service:v0.1
When I fire this command service goes fine, but DTR and UCP go down. I don't have a complete idea on it but just aware of docker UCP controller run on 443. My Question is
- can I run my microservice as a docker service on port 443 ?
- can I change the port number of docker UCP controller to some another port.
Thanks in Advance.