docs: faq: How do I edit openvpn.conf?

* It gets asked too many times.
This commit is contained in:
Kyle Manna 2015-07-06 08:55:42 -07:00
parent 017580fdaa
commit 08d8116e31

View File

@ -1,5 +1,12 @@
# Frequently Asked Questions
## How do I edit `openvpn.conf`?
Use a Docker image with a text editor pre-installed (i.e. Ubuntu) and connect the volume container:
docker run --volumes-from $OVPN_DATA --rm -it ubuntu vi /etc/openvpn/openvpn.conf
## Why not keep everything in one image?
The run-time image (`kylemanna/openvpn`) is intended to be an ephemeral image. Nothing should be saved in it so that it can be re-downloaded and re-run when updates are pushed (i.e. newer version of OpenVPN or even Debian). The data container contains all this data and is attached at run time providing a safe home.