diff options
author | maride <maride@darknebu.la> | 2018-09-02 01:38:07 +0200 |
---|---|---|
committer | maride <maride@darknebu.la> | 2018-09-02 01:38:07 +0200 |
commit | 59634eb0e08202298123cf96322ae40ebf59e071 (patch) | |
tree | e4bfd5a709bc35f03d6293f201a10cec4585e353 /Dockerfile | |
parent | 9c167802cc9b9a72fb6b3d773e9ce10edcf434c4 (diff) |
Use NAT from VPN network to other networks
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index 2330bd5..036b2b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ WORKDIR /prod # Install OpenVPN RUN apk update -RUN apk add openvpn +RUN apk add openvpn iptables # Copy our chainloader script COPY chainloader.sh /prod/chainloader.sh @@ -15,6 +15,8 @@ RUN chmod +x /prod/chainloader.sh # Copy server and client config files COPY server.conf /prod/server.conf COPY client.conf /prod/client.conf +COPY nat.sh /prod/nat.sh +RUN chmod +x /prod/nat.sh # Copy client config host code and compile it COPY host.go /tmp/host.go |