Update OpenVPN image

- Change base image to Ubuntu Xenial
 - Rename `create-client` command to more intuitive `export-client`
This commit is contained in:
Kelvin Chen 2016-10-07 00:50:47 -04:00
parent a27bf5625f
commit 2382d79fbe
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
FROM kelvinchen/seedbox:base FROM ubuntu:xenial
MAINTAINER Kelvin Chen <kelvin@kelvinchen.org> MAINTAINER Kelvin Chen <kelvin@kelvinchen.org>
# Install OpenVPN # Install OpenVPN
@ -17,7 +17,7 @@ EXPOSE 1194/udp
VOLUME /config VOLUME /config
COPY vars /usr/share/easy-rsa/ COPY vars /usr/share/easy-rsa/
COPY openvpn.conf start client.ovpn / COPY openvpn.conf init client.ovpn /
COPY create-client /usr/local/bin/ COPY export-client /usr/local/bin/
CMD ["/start"] CMD ["/init"]