Suwayomi / docker-tachidesk

Run Suwayomi-Server in a docker container
Mozilla Public License 2.0
240 stars 57 forks source link

location folder download #68

Closed arr111 closed 9 months ago

arr111 commented 9 months ago

I want to ask, how can I make the download folder location different from the default

Syer10 commented 9 months ago

You can mount the download folder from a different location, make sure to pay attention to the volume order because it matters here.

  tachidesk:
    image: ghcr.io/suwayomi/tachidesk:preview
    container_name: tachidesk
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Europe/London
      - LOGGING=notFile
    volumes:
      - /home/user/Documents/media/mangas:/home/suwayomi/.local/share/Tachidesk/downloads
      - /home/user/Documents/media/tachidesk:/home/suwayomi/.local/share/Tachidesk
    ports:
      - 4568:4567
    restart: unless-stopped
arr111 commented 9 months ago

Thank you very much Syer10 finally I can run tachidesk properly.