Changes for page Software Stacks

Last modified by chrisby on 2024/08/29 14:47

From version 1.4
edited by chrisby
on 2023/09/03 23:29
Change comment: There is no comment for this version
To version 1.6
edited by chrisby
on 2023/09/09 16:37
Change comment: There is no comment for this version

Summary

Details

Page properties
Content
... ... @@ -5,7 +5,7 @@
5 5  I love open source software, especially when it can be deployed seamlessly via Docker. However, individual projects often have unique nuances and configurations. So I've created this section to show you how to deploy the software I'm working on with no more than two commands. To get a working deployment of a software stack, simply copy the {{code language="none"}}docker-compose.yml{{/code}} from the article, replace any variables with the format {{code language="none"}}<some-variable>{{/code}} with an actual value, and follow the instructions.
6 6  
7 7  (% style="text-align: justify;" %)
8 -All the configurations described in the subsections use Traefik, which greatly simplifies the reverse proxying process and certificate generation. It's also possible to combine all the stacks on a single device behind a single Traefik container. Just copy the service configuration from one {{code language="none"}}docker-compose.yml{{/code}} to another {{code language="none"}}docker-compose.yml{{/code}}.
8 +All the configurations described in the subsections use Traefik, which greatly simplifies the reverse proxying process and certificate generation. It's also possible to combine all the stacks on a single device behind a single Traefik container. Just merge the service configuration from one {{code language="none"}}docker-compose.yml{{/code}} into another.
9 9  
10 10  (% style="text-align: justify;" %)
11 11  Traefik will automatically generate an appropriate LetsEncrypt certificate on startup. It's worth noting that there is currently a limit of 5 LetsEncrypt certificates per 24 hour period. However, there's an option in the Traefik settings in {{code language="none"}}docker-compose.yml{{/code}} to manually disable this and use dummy certificates instead. This comes in handy if you're in the experimental phase and are initiating multiple deployments per day. If you want to get rid of the dummy certificates, just shut down Traefik, delete its volume and restart it.
... ... @@ -20,4 +20,4 @@
20 20  * A Linux server
21 21  ** with a public IP address
22 22  ** where docker and docker-compose are installed
23 -* A domain (e.g. "crispy-coding.org") and DNS records pointing from subdomains (e.g. gitea.crispy-coding.org, openproject.crispy-coding.org) to the public IP address of the Linux server.
23 +* A domain (e.g. "crispy-coding.org") and DNS records pointing from subdomains (e.g. limesurvey.crispy-coding.org, openproject.crispy-coding.org) to the public IP address of the Linux server.