From 36c29812c791a79454e4e004ff1692a60cba04ed Mon Sep 17 00:00:00 2001 From: Bo Jeanes Date: Sat, 9 Jan 2021 10:33:11 +1100 Subject: [PATCH] Allow scaling joex with `docker-compose up --scale` Container name can't be hard coded and each joex instance needs a unique name. Since Docker always sets the `HOSTNAME` variable and these are unique, we can just interpolate the hostname into the joex app identifier, to avoid creating multiple config files. --- docker/docker-compose.yml | 1 - docker/docspell.conf | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/docker-compose.yml b/docker/docker-compose.yml index d909b887..fb5c24a8 100644 --- a/docker/docker-compose.yml +++ b/docker/docker-compose.yml @@ -15,7 +15,6 @@ services: joex: image: eikek0/docspell:joex-LATEST - container_name: docspell-joex restart: unless-stopped env_file: ./.env ports: diff --git a/docker/docspell.conf b/docker/docspell.conf index 31716b87..9ea246a9 100644 --- a/docker/docspell.conf +++ b/docker/docspell.conf @@ -27,7 +27,8 @@ docspell.server { } docspell.joex { - base-url = "http://joex:7878" + app-id = "joex-"${HOSTNAME} + base-url = "http://"${HOSTNAME}":7878" bind { address = "0.0.0.0" }