Added missing LOGLEVEL environment variable

This commit is contained in:
Quentin McGaw
2019-05-20 23:07:04 +02:00
parent e850c64f7e
commit 6f5e422f4b
3 changed files with 3 additions and 0 deletions

View File

@@ -53,6 +53,7 @@ ENV DELAY= \
ROOTURL= \ ROOTURL= \
LISTENINGPORT= \ LISTENINGPORT= \
LOGGING= \ LOGGING= \
LOGLEVEL= \
NODEID= NODEID=
COPY --from=builder --chown=1000 /tmp/gobuild/app /updater/app COPY --from=builder --chown=1000 /tmp/gobuild/app /updater/app
COPY --chown=1000 ui/* /updater/ui/ COPY --chown=1000 ui/* /updater/ui/

View File

@@ -210,6 +210,7 @@ Please then refer to your specific DNS host provider in the section below for ev
| `ROOTURL` | `/` | URL path to append to all paths to the webUI (i.e. `/ddns` for accessing `https://example.com/ddns` through a proxy) | | `ROOTURL` | `/` | URL path to append to all paths to the webUI (i.e. `/ddns` for accessing `https://example.com/ddns` through a proxy) |
| `LISTENINGPORT` | `8000` | Internal TCP listening port for the web UI | | `LISTENINGPORT` | `8000` | Internal TCP listening port for the web UI |
| `LOGGING` | `json` | Format of logging, `json` or `human` | | `LOGGING` | `json` | Format of logging, `json` or `human` |
| `LOGLEVEL` | `info` | Level of logging, `info`, `success`, `warning` or `error` |
| `NODEID` | `0` | Node ID (for distributed systems), can be any integer | | `NODEID` | `0` | Node ID (for distributed systems), can be any integer |
### Host firewall ### Host firewall

View File

@@ -14,4 +14,5 @@ services:
- LISTENINGPORT=8000 - LISTENINGPORT=8000
- LOGGING=human - LOGGING=human
- NODEID=0 - NODEID=0
- LOGLEVEL=
restart: always restart: always