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
While using the container in a dual-stack setup I noticed that it's
sufficient to bind the IPv6 ports, as IPv4 traffic will reach the
application as a translated IPv6 message. Thus using the IPv6-only
config actually works for both IPv4 and IPv6.
Copy file name to clipboardExpand all lines: README.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ docker run \ # or `podman` or what ever other container runtime you like
17
17
-v /path/to/user/data:/etc/crymap/users \ # mount the user data
18
18
-v /path/to/crymap.toml:/etc/crymap/crymap.toml \ # mount your config
19
19
-v /path/to/privkey.pem:/config/path/to/privkey.pem \ # mount pivkey (make sure to adjust path as in your config)
20
-
-v /path/to/fullchain.pem:/config/path/to/fullchain.pem \ # mount fullchein (make sure to adjust path as in your config)
20
+
-v /path/to/fullchain.pem:/config/path/to/fullchain.pem \ # mount fullchain (make sure to adjust path as in your config)
21
21
ghcr.io/molikuner/crymap-container:latest
22
22
```
23
23
@@ -27,8 +27,10 @@ The container is configured by default to log to stdout. If that needs to be adj
27
27
28
28
### IPv6
29
29
30
-
By default the container only binds IPv4 ports. If host networking is used or the container runtime supports IPv6, simply use the `/etc/inetd46.conf` to bind to IPv4 and IPv6 addresses.
30
+
By default the container only binds IPv4 ports. If host networking is used or the container runtime supports IPv6, simply use the `/etc/inetd6.conf` to bind to IPv4 and IPv6 addresses.
31
+
32
+
Since the entrypoint of the container is `inetd` already, it's sufficient to specify the new config as command:
31
33
32
34
```shell
33
-
docker run <...> ghcr.io/molikuner/crymap-container:latest /etc/inetd46.conf
35
+
docker run <...> ghcr.io/molikuner/crymap-container:latest /etc/inetd6.conf
0 commit comments