From f033396905edbf21fc232a4772685fc9b3a9d73a Mon Sep 17 00:00:00 2001 From: Tho Ho Date: Mon, 10 Oct 2022 14:52:34 +0800 Subject: [PATCH] Update README support DB_PORT --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 2aa0dc2..36db023 100644 --- a/README.md +++ b/README.md @@ -101,6 +101,7 @@ services: - PGID=1000 - APP_URL= - DB_HOST=bookstack_db + - DB_PORT=3306 - DB_USER=bookstack - DB_PASS= - DB_DATABASE=bookstackapp @@ -137,6 +138,7 @@ docker run -d \ -e PGID=1000 \ -e APP_URL= \ -e DB_HOST= \ + -e DB_PORT= \ -e DB_USER= \ -e DB_PASS= \ -e DB_DATABASE=bookstackapp \ @@ -157,6 +159,7 @@ Container images are configured using parameters passed at runtime (such as thos | `-e PGID=1000` | for GroupID - see below for explanation | | `-e APP_URL=` | for specifying the IP:port or URL your application will be accessed on (ie. `http://192.168.1.1:6875` or `https://bookstack.mydomain.com` | | `-e DB_HOST=` | for specifying the database host | +| `-e DB_PORT=` | for specifying the database port if not default 3306 | | `-e DB_USER=` | for specifying the database user | | `-e DB_PASS=` | for specifying the database password | | `-e DB_DATABASE=bookstackapp` | for specifying the database to be used |