Another flood with rtorrent SCGI open port specified
This commit is contained in:
parent
55419c1c00
commit
29c2a1b1a3
|
@ -3,6 +3,8 @@ ACME_MAIL=my-email@my-provider.com
|
||||||
HTTP_USER=myuser
|
HTTP_USER=myuser
|
||||||
HTTP_PASSWORD=mypassword_encoded
|
HTTP_PASSWORD=mypassword_encoded
|
||||||
PORTAINER_ADMIN_PASSWORD=h4ckMePleAse
|
PORTAINER_ADMIN_PASSWORD=h4ckMePleAse
|
||||||
|
FLOODSECRET=h4ckMePleAse
|
||||||
|
|
||||||
|
|
||||||
# Filerun
|
# Filerun
|
||||||
MYSQL_ROOT_PASSWORD=your_mysql_root_password
|
MYSQL_ROOT_PASSWORD=your_mysql_root_password
|
||||||
|
|
|
@ -199,17 +199,21 @@ services:
|
||||||
- 'traefik.enable=true'
|
- 'traefik.enable=true'
|
||||||
|
|
||||||
flood:
|
flood:
|
||||||
image: linuxserver/flood
|
image: wonderfall/rtorrent-flood
|
||||||
restart: always
|
restart: always
|
||||||
|
tty: true
|
||||||
networks:
|
networks:
|
||||||
- web
|
- web
|
||||||
volumes:
|
volumes:
|
||||||
- configflood:/config
|
- configflood:/data
|
||||||
|
- flooddb:/flood-db
|
||||||
- torrents:/torrents
|
- torrents:/torrents
|
||||||
environment:
|
environment:
|
||||||
- PGID=0
|
- GID=0
|
||||||
- PUID=0
|
- UID=0
|
||||||
|
- FLOOD_SECRET=${FLOODSECRET}
|
||||||
- TZ=Europe/Paris
|
- TZ=Europe/Paris
|
||||||
|
- RTORRENT_SCGI=11679
|
||||||
labels:
|
labels:
|
||||||
- 'traefik.backend=flood'
|
- 'traefik.backend=flood'
|
||||||
- 'traefik.port=3000'
|
- 'traefik.port=3000'
|
||||||
|
@ -285,6 +289,10 @@ volumes:
|
||||||
driver: local-persist
|
driver: local-persist
|
||||||
driver_opts:
|
driver_opts:
|
||||||
mountpoint: /data/config/flood
|
mountpoint: /data/config/flood
|
||||||
|
flooddb:
|
||||||
|
driver: local-persist
|
||||||
|
driver_opts:
|
||||||
|
mountpoint: /data/config/flood/flood-db
|
||||||
torrents:
|
torrents:
|
||||||
driver: local-persist
|
driver: local-persist
|
||||||
driver_opts:
|
driver_opts:
|
||||||
|
|
Loading…
Reference in New Issue