SoftEtherVPN icon indicating copy to clipboard operation
SoftEtherVPN copied to clipboard

Compose Issues

Open charlesomer opened this issue 3 years ago • 3 comments

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

charlesomer avatar Jan 03 '22 13:01 charlesomer

Same problem here, I hope someone can help

joelimgu avatar Sep 24 '22 12:09 joelimgu

Have you found a solution?

Antol avatar Mar 16 '23 11:03 Antol

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

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

luthfi-hh avatar Jun 25 '23 04:06 luthfi-hh