siomiz / SoftEtherVPN

A Docker Automated Build Repository for SoftEther VPN
https://hub.docker.com/r/siomiz/softethervpn/
MIT License
454 stars 174 forks source link

Compose Issues #98

Open charlesomer opened 2 years ago

charlesomer commented 2 years ago

Hi,

The example docker compose file doesn't appear to work as it thinks ./vpn_server.config is a folder rather than a file by the looks of it.

Also, when trying to run the docker image I get the following issues in the logs, have I missed something obvious?

dmesg: read kernel buffer failed: Operation not permitted
# Warning: iptables-legacy tables present, use iptables-legacy to see them

Thank you Charles

joelimgu commented 1 year ago

Same problem here, I hope someone can help

Antol commented 1 year ago

Have you found a solution?

luthfi-hh commented 1 year ago

Set privileged: true and cap_add: NET_ADMIN might solve the issue

softeher:
    ...
    cap_add:
      - NET_ADMIN
    privileged: true
    ...