From abe5ce267b1a06e6d92b396e830d5848dc955f20 Mon Sep 17 00:00:00 2001 From: Yu-Chung Hsiao Date: Mon, 28 Dec 2015 00:47:01 -0800 Subject: [PATCH] Put a paragraph to non-default port configuration --- Install-Wekan-Docker-for-testing.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/Install-Wekan-Docker-for-testing.md b/Install-Wekan-Docker-for-testing.md index c7d2089..dbabb08 100644 --- a/Install-Wekan-Docker-for-testing.md +++ b/Install-Wekan-Docker-for-testing.md @@ -26,5 +26,18 @@ Then, from the directory containing the `docker-compose.yml` (i.e. `/home/johndo Your wekan data are in `/home/johndoe/wekan/data` and thus can be backed up. +**Note** +If the default host port 80 has been used and you would like to set up Wekan for another port, say, 1234, the configuration above +``` + ports: + - 80:80 +``` +can be replaced by +``` + ports: + - 1234:80 +``` +with all the rest unchanged. + (This procedure has been tested on Linux Ubuntu 14.04.)