File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -56,6 +56,10 @@ services:
56
56
context : .
57
57
cache_from :
58
58
- lsiobase/alpine.python3:latest
59
+ sysctls : # For IPv6
60
+ - net.ipv6.conf.all.disable_ipv6=0
61
+ - net.ipv6.conf.default.forwarding=1
62
+ - net.ipv6.conf.all.forwarding=1
59
63
networks :
60
64
mynetwork :
61
65
ipv4_address : 10.0.0.5
Original file line number Diff line number Diff line change 2
2
# OpenVPN server sample configuration
3
3
#
4
4
5
- version : ' 2.2'
5
+ version : ' 2.2' # Min version 2.1 for IPv6
6
6
services :
7
7
ovpn :
8
8
image : slocomptech/openvpn
@@ -22,7 +22,11 @@ services:
22
22
context : .
23
23
cache_from :
24
24
- lsiobase/alpine.python3:latest
25
-
25
+ sysctls : # For IPv6
26
+ - net.ipv6.conf.all.disable_ipv6=0
27
+ - net.ipv6.conf.default.forwarding=1
28
+ - net.ipv6.conf.all.forwarding=1
29
+
26
30
network_mode : " bridge"
27
31
# network_mode: "host"
28
32
You can’t perform that action at this time.
0 commit comments