Cops

Cops⁠ by Sébastien Lucas, now maintained by MikesPub, stands for Calibre OPDS (and HTML) Php Server.

COPS links to your Calibre library database and allows downloading and emailing of books directly from a web browser and provides a OPDS feed to connect to your devices.

Changes in your Calibre library are reflected immediately in your COPS pages.

Directory Structure

    • .env
    • docker-compose.yml

docker-compose.yml

version: '3.9'
 
services:
  cops:
    image: lscr.io/linuxserver/cops:latest
    container_name: cops
    environment:
      - PUID=1000
      - PGID=1000
      - TZ=Etc/UTC
    volumes:
      - /path/to/cops/config:/config
      - /path/to/data:/books
    ports:
      - 80:80
      - 443:443
    restart: unless-stopped

Resources

Website: https://blog.slucas.fr/projects/calibre-opds-php-server/

GitHub: https://github.com/mikespub-org/seblucas-cops

Docker Hub: https://hub.docker.com/r/linuxserver/cops

Configuration: https://github.com/linuxserver/docker-cops