You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hi,
I have some issues in showing my disk usage/space
I run docker here is my file:
`flood:
hostname: flood
container_name: flood
image: jesec/flood
user: 1000:1000
restart: unless-stopped
networks:
- skynet
command: --port 3000 --allowedpath /merged,/tl,/downloads
environment:
- HOME=/config
volumes:
- ${BASE_DOCKER_DATA_PATH}/flood/config:/config:rw
- ${BASE_DATA_MERGED_PATH}:/merged
- ${BASE_DATA_TORRENTLEECH_PATH}:/tl
labels:
- "traefik.enable=true"
- "traefik.port=3000"
- "traefik.frontend.rule=Host:flood.domain.tld"
healthcheck:
test: wget -nv -t1 --spider 'http://localhost:3000/' || exit 1
interval: 1m30s
timeout: 10s
retries: 3
rtorrent:
container_name: rtorrent
image: jesec/rtorrent
user: 1000:1000
restart: unless-stopped
command: -o network.port_range.set=50834-50834,system.daemon.set=true
network_mode: 'service:gluetuntorrent'
environment:
- HOME=/config
volumes:
- ${BASE_DOCKER_DATA_PATH}/flood/config:/config
- ${BASE_DATA_MERGED_PATH}:/merged
- ${BASE_DATA_TORRENTLEECH_PATH}:/tl`
Here is an image from the disk from the console within flood:
I am missing the
/tl
Beta Was this translation helpful? Give feedback.
All reactions