39 lines
718 B
YAML
39 lines
718 B
YAML
services:
|
|
qbittorrent:
|
|
image: lscr.io/linuxserver/qbittorrent:latest
|
|
container_name: qbittorrent
|
|
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- PUID=${UID}
|
|
- PGID=${GID}
|
|
volumes:
|
|
- ../data/qbittorrent:/config
|
|
- ../media:/media
|
|
ports:
|
|
- "${QBT_WEBUI_PORT}:8080"
|
|
- "6881:6881"
|
|
- "6881:6881/udp"
|
|
|
|
restart: unless-stopped
|
|
|
|
flood:
|
|
image: jesec/flood:latest
|
|
container_name: flood
|
|
user: "${UID}:${GID}"
|
|
|
|
env_file:
|
|
- .env
|
|
environment:
|
|
- HOME=/config
|
|
volumes:
|
|
- ../data/flood:/config
|
|
- ../media:/media
|
|
ports:
|
|
- "${FLOOD_WEBUI_PORT}:3000"
|
|
depends_on:
|
|
- qbittorrent
|
|
|
|
restart: unless-stopped
|