I’ve this docker compose file:
services:
openvpn:
command: ovpn_genconfig -u udp://mydomain.com
image: kylemanna/openvpn
ports:
- "1194:1194/udp"
restart: always
volumes:
- ./vpn-config:/etc/openvpn
First it said openvpn_env.sh no such file or directory, after I created the file it generates openvpn.conf but then says:
Files /etc/openvpn/ovpn_env.sh.1714900605.bak and /etc/openvpn/ovpn_env.sh differ and exits.
What am I doing wrong