docker-openvpn icon indicating copy to clipboard operation
docker-openvpn copied to clipboard

please update complete image is uses old packages which are not secure any more

Open travelg opened this issue 2 years ago • 6 comments

Please update all base image and packages to latest, which resolved many security loop holes.

Please update for amd64 and also for aarch64. thanks

travelg avatar Aug 20 '21 18:08 travelg

Yes i love this image, the best so far i know. How can we help to update/rebuild this image with the latest openvpn version? Thanks alot!

JellevanKraaij avatar Sep 28 '21 20:09 JellevanKraaij

pull the repository and then build the image manually. it worked for me and now its using openvpn v 2.5.2, even though the latest is 2.5.3 but i guess alpine have yet to update their package.

docker-compose example:

clone the repo to the same file where the compose config is located

version: '2'
services:
  openvpn:
    cap_add:
     - NET_ADMIN
#    image: kylemanna/openvpn
    build:
      context: ./docker-openvpn
      dockerfile: ./Dockerfile
    container_name: openvpn
    ports:
     - "1194:1194/udp"
    restart: always
    volumes:
     - ./openvpn-data/conf:/etc/openvpn

and then docker-compose build --pull (V1) or docker compose build --pull (V2) and then run the project normally with docker-compose/docker compose up -d

FarisZR avatar Oct 01 '21 20:10 FarisZR

Okay thanks, but this project seems a bit dead, how can we help to revive it? Or is theire a newer project?

JellevanKraaij avatar Oct 01 '21 20:10 JellevanKraaij

there is this one https://github.com/dockovpn/docker-openvpn but it has its own problems, like persistent configs not working https://github.com/dockovpn/docker-openvpn/issues/132

anyway, i hope kyle returns because this is a temporary fix that might break at anytime. dockovpn looks like a good alternative and its image is updated regularly

FarisZR avatar Oct 01 '21 20:10 FarisZR

Thanks, @fariszr !

Yes, @git-the-bits- very keen on seeing this image use the latest OpenVPN packages.

@kylemanna shouldn't there be automated builds happening?

skupjoe avatar Oct 01 '21 21:10 skupjoe

This is the repo that I maintain: https://hub.docker.com/r/lisenet/openvpn

It gets the latest version short after one has been published.

lisenet avatar Mar 29 '23 13:03 lisenet