Migrated to use "::" by default for #71

This commit is contained in:
simonmicro 2022-12-07 11:42:05 +01:00
parent e8c2fb7e50
commit d8c1d75be1
No known key found for this signature in database
GPG key ID: 033A4D4CE4E063D6
10 changed files with 21 additions and 21 deletions

View file

@ -1,7 +1,7 @@
# This is a minimized version from docker/docker-py3-kms/Dockerfile without SQLite support to further reduce image size
FROM alpine:3.15
ENV IP 0.0.0.0
ENV IP ::
ENV PORT 1688
ENV EPID ""
ENV LCID 1033

View file

@ -1,7 +1,7 @@
# Switch to the target image
FROM alpine:3.15
ENV IP 0.0.0.0
ENV IP ::
ENV PORT 1688
ENV EPID ""
ENV LCID 1033

View file

@ -27,7 +27,7 @@ log_level_bootstrap = log_level = os.environ.get('LOGLEVEL', 'INFO')
if log_level_bootstrap == "MININFO":
log_level_bootstrap = "INFO"
log_file = os.environ.get('LOGFILE', 'STDOUT')
listen_ip = os.environ.get('IP', '0.0.0.0').split()
listen_ip = os.environ.get('IP', '::').split()
listen_port = os.environ.get('PORT', '1688')
sqlite_port = os.environ.get('SQLITE_PORT', '8080')