From bc8b773b0bc2c9a7c5277fba991cc46249e9c753 Mon Sep 17 00:00:00 2001 From: Alexey Belokrys-Fedotov Date: Wed, 10 Feb 2021 21:26:29 +0300 Subject: [PATCH] Update README.md Since the ADDRESS environment variable is required, the docker quickstart command must have it. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1927748..ceec14b 100644 --- a/README.md +++ b/README.md @@ -61,13 +61,13 @@ This will deploy an instance of the crewlink-server. You can get the URL of your Run the server with [Docker](https://docs.docker.com/get-docker/) by running the following command: ``` -docker run -d -p 9736:9736 ottomated/crewlink-server:latest +docker run -d -p 9736:9736 --env ADDRESS=example.com ottomated/crewlink-server:latest ``` To change the external port the server uses, change the *first* instance of the port. For example, to use port 8123: ``` -docker run -d -p 8123:9736 ottomated/crewlink-server:latest +docker run -d -p 8123:9736 --env ADDRESS=example.com ottomated/crewlink-server:latest ``` ### Building the Docker Image