Stump

A fast, free and open source comics, manga and digital book server with OPDS support.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.3'
services:
  stump:
    image: aaronleopold/stump:latest
    container_name: stump
    # Replace my paths (prior to the colons) with your own
    volumes:
      - /home/aaronleopold/.stump:/config
      - /media/books:/data
    ports:
      - 10801:10801
    environment:
      - PUID=1000
      - PGID=1000
      # This `environment` field is optional, remove if you don't need it.
      # I am using it as an example here, but it's actually a default value.
      - STUMP_CONFIG_DIR=/config
    restart: unless-stopped

Resources

Website: https://www.stumpapp.dev/

GitHub: https://github.com/stumpapp/stump

Docker Hub: https://hub.docker.com/r/aaronleopold/stump

Configuration: https://www.stumpapp.dev/installation/docker