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
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