This repo is a part of the complete instruction on r4ven.me for deploying an OpenConnect VPN server via docker and docker-compose. All source files available at my GitHub repo.
When using a domain to obtain SSL certificates, uncomment the certbot service and the depends_on parameter for the openconnect service, and specify your values instead of example in the docker-compose.yml file.
Installation and configuration of the OpenConnect VPN server
- Begin by creating a project directory
mkdir openconnect && cd ./openconnect
- Copying the docker-compose.yml file
curl -O https://raw.githubusercontent.com/r4ven-me/docker/main/openconnect/docker-compose.yml
- Launching the OpenConnect server
docker-compose up -d && docker-compose logs -f
- Creating a user with the ID "exampleuser" and the name "Example User" The .p12 certificate file will be created in ./data/secrets
docker exec -it openconnect ocuser exampleuser 'Example User'
Example of connecting the client using the openconnect utility
- Without a domain
sudo openconnect -c /home/exampleuser/exampleuser.p12 12.345.67.89:43443 <<< $(echo "examplepassword"$'\n'yes$'\n')
- With a domain
sudo openconnect -c /home/exampleuser/exampleuser.p12 example.com:43443 <<< $(echo "examplepassword"$'\n')