clickonetwo / adobe-desktop-licensing-utilities

Utility programs for managing Adobe desktop software deployments
Other
5 stars 0 forks source link

adlu-proxy Docker container #26

Open thomasberglund opened 2 months ago

thomasberglund commented 2 months ago

To simplify deployment of adlu-proxy it would be great to be able to run adlu-proxy in a Docker container.

clickonetwo commented 2 months ago

Would you be doing the SSL termination in a load balancer that then feeds the container? (That's typically what's done when running in a general container environment.) Or would you want the proxy to run privileged inside the container so it could use port 443 and terminate the SSL connection?

Since the proxy uses a local database, you would almost certainly want an external filesystem mounted to hold the database. Keep in mind that, because the database is local to a machine/container, there's no way you can run the proxy in multiple containers simultaneously.

thomasberglund commented 1 month ago

Hi! Sorry for the late response. Yes, we would be doing the SSL termination in a load balancer.

Thanks!