-
Steps to reproduce:I'm trying to create a docker container in synologyOS by running the following command docker run -d --name=transmission-openvpn \
-p 8118:8118 \
-p 8888:8888 \
-p 9091:9091 \
-e PUID=1028 \
-e PGID=65537 \
-e TZ=America/Los_Angeles \
-e OPENVPN_PROVIDER=NORDVPN \
-e OPENVPN_USERNAME=<username_#2637> \
-e OPENVPN_PASSWORD=<password_#2637> \
-e NORDVPN_COUNTRY=US \
-e TRANSMISSION_DOWNLOAD_DIR=/data/complete \
-e TRANSMISSION_INCOMPLETE_DIR=/data/incomplete \
-e TRANSMISSION_WATCH_DIR=/data/watch \
-v /volume1/docker/transmission/:/data/ \
-v /volume1/docker/transmission/config/:/config/ \
--log-opt max-size=100m \
haugene/transmission-openvpn:latest Expected behaviour:Docker running correctly Observed issueDocker stopping automatically. This is showing in the log:
It doesn't seem to be an authorization issue. I can't tell from the log why it is raising a fatal error. This was working back in July. Any advice would be appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Hi, I suspect a synology peculiar way of handling docker to be the cause of your problem. |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
Hi,
I suspect a synology peculiar way of handling docker to be the cause of your problem.
You may either mount /dev/tun in the container or set CREATE_TUN_DEVICE to true
https://haugene.github.io/docker-transmission-openvpn/config-options/