Docker

How to install SeedboxSync with Docker

Table of Contents

  • Setup your configuration.yml (see configuration).
  • Run docker and mount your configuration.yml.
docker run -d \
  --volumes /data/seedboxsync/seedboxsync.yml:/config/seedboxsync.yml \
  ghcr.io/llaumgui/seedboxsync:latest

With docker-compose:

  seedboxsync:
    container_name: seedboxsync
    image: ghcr.io/llaumgui/seedboxsync:latest
    restart: always
    environment:
      TZ: 'Europe/Paris'
    volumes:
     - /data/seedboxsync/seedboxsync.yml:/config/seedboxsync.yml
     - /data/seedboxsync/watch:/watch
     - /data/seedboxsync/download:/download