Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 1.7 KB

systemd.md

File metadata and controls

37 lines (26 loc) · 1.7 KB

Docker + OpenVPN systemd Service

The systemd service aims to make the update and invocation of the docker-openvpn container seamless. It automatically downloads the latest docker-openvpn image and instantiates a Docker container with that image. At shutdown it cleans-up the old container.

In the event the service dies (crashes, or is killed) systemd will attempt to restart the service every 10 seconds until the service is stopped with systemctl stop [email protected].

A number of IPv6 hacks are incorporated to workaround Docker shortcomings and are harmless for those not using IPv6.

To use and enable automatic start by systemd:

  1. Create a Docker volume container named ovpn-data-NAME where NAME is the user's choice to describe the use of the container. In the example configuration given in the README NAME=data.

  2. Initialize the data container according to the docker-openvpn README, but don't start the container. Stop the Docker container if started.

  3. Download the [email protected] file to /etc/systemd/system:

     curl -L https://raw.githubusercontent.com/kylemanna/docker-openvpn/master/init/docker-openvpn%40.service | sudo tee /etc/systemd/system/[email protected]
    
  4. Enable and start the service with:

     systemctl enable --now [email protected]
    
  5. Verify service start-up with:

     systemctl status [email protected]
     journalctl --unit [email protected]
    

For more information, see the systemd manual pages.