From 5e28222332a26692090c403787fd239c570189dd Mon Sep 17 00:00:00 2001 From: AbdBarho Date: Sun, 25 Jun 2023 20:33:57 +0200 Subject: [PATCH] Allow setting port through env WEBUI_PORT (#521) I am actually not happy with this solution, I would prefer if it was possible to customize the ports within `docker-compose.override.yml` --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 8caad1d..8d14e57 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: '3.9' x-base_service: &base_service ports: - - "7860:7860" + - "${WEBUI_PORT:-7860}:7860" volumes: - &v1 ./data:/data - &v2 ./output:/output