Giter Club home page Giter Club logo

Comments (4)

CHBMB avatar CHBMB commented on May 29, 2024 1

@Ammadkhalid Two things:

  • Don't run as root, it breaks things
  • Don't bump a very old issue.

from docker-transmission.

sparklyballs avatar sparklyballs commented on May 29, 2024

you haven't set the PGID and PUID variables

https://github.com/linuxserver/docker-transmission/blob/master/README.md#user--group-identifiers

from docker-transmission.

Ka0o0 avatar Ka0o0 commented on May 29, 2024

My drive is owned by root so I updated the docker–compose.yml to:

services:
  ...
  transmission:
    image: "linuxserver/transmission:latest"
    volumes:
      - /mnt/data/transmission/config:/config
      - /mnt/data/transmission/watch:/watch
      - /mnt/data/transmission/downloads:/downloads
    environment:
      - TZ="Europe/Vienna"
      - PUID=0
      - PGID=0
    restart: always
    ports:
      - 51413:51413

which did not help.
But I found an additional error message

UDP Failed to set receive buffer: requested 4194304, got 425984
UDP Please add the line "net.core.rmem_max = 4194304" to /etc/sysctl.conf

UDP Failed to set send buffer: requested 1048576, got 425984
UDP Please add the line "net.core.wmem_max = 1048576" to /etc/sysctl.conf

I did that and the error messages were gone and now it works

from docker-transmission.

kmkmjhyiiiu avatar kmkmjhyiiiu commented on May 29, 2024

@Ka0o0 i'm doing the same thing however when downloads are complete. Files just disappeared to somewhere than Downloads directory. Have you figure out your issue?
here is my docker-compose.yml

version: "3"

services:

  transmission:
    image: linuxserver/transmission
    container_name: transmission
    environment:
      - PUID=0
      - PGID=0
      - TZ=UTC
      - USER=transmission
      - PASS=transmission
    volumes:
#      - TODO dont forget to change volumes path.
      - ./docker/transmission/config:/config
      - ./data/media/transmission/:/downloads
      - ./docker/transmission/watch:/watch
    ports:
      - 9091:9091
      - 51413:51413
      - 51413:51413/udp
    restart: unless-stopped

  web:
    command: ['bash', './scripts/entry-point.sh']
    build: .
    volumes:
      - .:/code/
    depends_on:
      - transmission
    links:
      - transmission

from docker-transmission.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.