From 31d631443fb7b842737089d188d7674f593b50f0 Mon Sep 17 00:00:00 2001 From: Kyle Manna Date: Sat, 5 Jul 2014 23:35:19 -0700 Subject: [PATCH] README: Update to reflect recent changes * Change argument parameters. Closes #4 --- README.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e091b7c..7c53f0f 100644 --- a/README.md +++ b/README.md @@ -4,10 +4,14 @@ OpenVPN server in a Docker container complete with an EasyRSA PKI CA. ## Quick Start -* Initalize the `openvpn-data` container that will hold the configuration files - and certificates +* Create the `openvpn-data` volume container - docker run --name openvpn-data -it kylemanna/openvpn ovpn_init udp://VPN.SERVERNAME.COM:1194 + docker run --name openvpn-data -v /etc/openvpn busybox + +* Initalize the `openvpn-data` container that will hold the configuration files and certificates + + docker run --volumes-from openvpn-data kylemanna/openvpn ovpn_genconfig -u udp://VPN.SERVERNAME.COM:1194 + docker run --volumes-from openvpn-data -it kylemanna/openvpn ovpn_initpki * Start OpenVPN server process