Update OpenVPN image
- Change base image to Ubuntu Xenial - Rename `create-client` command to more intuitive `export-client`
This commit is contained in:
parent
a27bf5625f
commit
2382d79fbe
|
@ -1,4 +1,4 @@
|
|||
FROM kelvinchen/seedbox:base
|
||||
FROM ubuntu:xenial
|
||||
MAINTAINER Kelvin Chen <kelvin@kelvinchen.org>
|
||||
|
||||
# Install OpenVPN
|
||||
|
@ -17,7 +17,7 @@ EXPOSE 1194/udp
|
|||
VOLUME /config
|
||||
|
||||
COPY vars /usr/share/easy-rsa/
|
||||
COPY openvpn.conf start client.ovpn /
|
||||
COPY create-client /usr/local/bin/
|
||||
COPY openvpn.conf init client.ovpn /
|
||||
COPY export-client /usr/local/bin/
|
||||
|
||||
CMD ["/start"]
|
||||
CMD ["/init"]
|
||||
|
|
Loading…
Reference in New Issue