1

I'm testing youtrack and installed it using docker with the image uniplug/youtrack-docker. I am new to docker; I am having trouble setting it up to use SSL. Any suggestion on how I could accomplish this?

Thank you

d0001
  • 2,162
  • 3
  • 20
  • 46

1 Answers1

1

The image you've selected won't support this, it only listens on port 80

you have a couple of options:

You can add a reverse proxy. There's an example of running a reverse proxy on the host in the git readme - you could also run a second container and network them, with the reverse proxy running in another container.

Your other option is to create your own Dockerfile. So for example, you could create a Dockerfile with the following:

FROM uniplug/youtrack-docker

EXPOSE 443/tcp

CMD ["/usr/bin/supervisord","-n","-c","/etc/supervisor/supervisord.conf"]

Then you'd need to mount your SSL config using additional settings options

jaxxstorm
  • 12,422
  • 5
  • 57
  • 67