Im using this project with compose in the following way and noticed 100% cpu on one core.
version: "3"
services:
ike-vpn:
image: debian-ike:0.1
command: config.vpn
volumes:
- ./volume:/mnt/volume
privileged: true
network_mode: "host"
#restart: always
I adapted the scripts based on this SO thread https://askubuntu.com/questions/1022222/ikec-causes-high-cpu-usage-when-started-as-background-process
Im using this project with compose in the following way and noticed 100% cpu on one core.
I adapted the scripts based on this SO thread https://askubuntu.com/questions/1022222/ikec-causes-high-cpu-usage-when-started-as-background-process
screento Dockerfile https://github.com/thegitfather/docker-debian-ike/blob/master/Dockerfile#L11screen -S "ikescreen" -d -m ikec -r "${CONFIG}" -u ${USER} -p ${PW} -a &in startup.sh at https://github.com/thegitfather/docker-debian-ike/blob/master/startup.sh#L50