We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
screen
screen -S "ikescreen" -d -m ikec -r "${CONFIG}" -u ${USER} -p ${PW} -a &
The text was updated successfully, but these errors were encountered:
No branches or pull requests
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
screen
to 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#L50The text was updated successfully, but these errors were encountered: