You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+4
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,7 @@ services:
52
52
- PUID=1000
53
53
- PGID=1000
54
54
- TZ=Europe/London
55
+
- LEGACY_NET= #optional
55
56
volumes:
56
57
- /path/to/appdata/config:/config
57
58
ports:
@@ -66,6 +67,7 @@ docker run -d \
66
67
--name=py-kms \
67
68
-e PUID=1000 \
68
69
-e PGID=1000 \
70
+
-e LEGACY_NET= `#optional` \
69
71
-e TZ=Europe/London \
70
72
-p 1688:1688 \
71
73
-v /path/to/appdata/config:/config \
@@ -83,6 +85,7 @@ Container images are configured using parameters passed at runtime (such as thos
83
85
|`-e PUID=1000`| for UserID - see below for explanation |
84
86
|`-e PGID=1000`| for GroupID - see below for explanation |
85
87
|`-e TZ=Europe/London`| Specify a timezone to use EG Europe/London |
88
+
|`-e LEGACY_NET=`| Set to `true` if you have an ancient host that can't support IPv6 dual stack. This will force py-kms to only bind to the IPv4 interface inside the container. |
86
89
|`-v /config`| Contains all relevant configuration files. |
87
90
88
91
## User / Group Identifiers
@@ -109,6 +112,7 @@ In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as bel
109
112
110
113
## Versions
111
114
115
+
***29.10.23:** - Provide IPv4-only option for legacy hosts.
112
116
***14.05.23:** - Rebase to Alpine 3.18. Drop support for armhf.
0 commit comments