Description
I'm getting the error "validating /compose/deluge/docker-compose.yml: volumes must be a mapping." Do you see what might be causing this error?
deluge:
image: binhex/arch-delugevpn
container_name: deluge
cap_add:
- net_admin
ports:
-
8112:8112
-
8118:8118
-
58846:58846
-
58946:58946
volumes:
-
/data/torrents:/data/torrents
-
/appdata/deluge:/config
-
/etc/localtime:/etc/localtime:ro
-
/appdata/deluge/netherlands.ovpn:/config/netherlands.ovpn #this will vary depending on what VPN service you use
environment:
-
VPN_ENABLED=yes
-
VPN_USER=username
-
VPN_PASS=password
-
VPN_PROV=pia
-
STRICT_PORT_FORWARD=yes
-
ENABLE_PRIVOXY=yes
-
LAN_NETWORK=192.168.30.0/24 # this is the subnet my local config uses to allow connections to the deluge webui.
-
NAME_SERVERS=84.200.69.80,37.235.1.174,1.1.1.1,37.235.1.177,84.200.70.40,1.0.0.1
-
DELUGE_DAEMON_LOG_LEVEL=info
-
DELUGE_WEB_LOG_LEVEL=info
-
ADDITIONAL_PORTS=1234
-
DEBUG=false
-
UMASK=002
-
PUID=1000
-
PGID=1000