Unable to start container with TORGUARD #3013
ramimasri79
started this conversation in
General
Replies: 3 comments 1 reply
|
Been having the same exact issue. A few weeks ago I was able to comment out the ncp-disable line in the ovpn files and it worked, but this week they all reset and I'm experiencing the same thing again. I try to comment out again, save, and then when the container relaunches the file has been reset to uncomment the ncp-disable. |
0 replies
|
Having the same issue. Commenting out or deleting the ncp-disable line and restarting the container only resets the default.ovpn file to include the ncp-disable line again. |
1 reply
|
Got this issue as well..I'll try the local files tonight. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I've been having issues starting the container with torguard for at least about a week.
I'm looking at the logs and it keeps on throwing the following error then restarting.
Options error: Unrecognized option or missing or extra parameter(s) in /etc/openvpn/torguard/Canada.Toronto.ovpn:16: ncp-disable (2.6.19)
I'm assuming this is something that's build into the container? Otherwise, not sure where else it could be set.
My compose file looks something like this
transmission-vpn:
container_name: transmission-vpn
image: haugene/transmission-openvpn
cap_add:
- NET_ADMIN
restart: always
ports:
- "9091:9091"
dns:
- 8.8.8.8
- 8.8.4.4
volumes:
- /home/docker/transmission-vpn:/data
- /home/docker/shared:/shared
- /home/docker/Downloads:/data/watch
- /home/docker/Downloads/Completed:/downloads
- /home/docker/Downloads/Incomplete:/data/incomplete
- /etc/localtime:/etc/localtime:ro
environment:
- OPENVPN_PROVIDER=TORGUARD
- OPENVPN_CONFIG=Canada.Toronto
- .....
All reactions