Title logo
linuxserver/cops.

A COPS container, brought to you by LinuxServer.io.

22,401,418 94 arm64 amd64

Build Information

General build information for this image

Docker Hub linuxserver/cops
Build Time 03 May 2024 20:49:11
Category Books
Synchronised Yes
Stable Yes
Deprecated No

Tracked Tags

Known tags which link to a specific branched app version.

Branch Version Built
latest 2.5.6 03 May 2024 at 20:49:11

Daily Pull Statistics

Running this as a container

Basic examples for getting this image running as a container

Docker Compose

---
version: "2"
services:
  cops:
    image: linuxserver/cops:2.5.6
    container_name: cops
    restart: unless-stopped
    environment:
      - TZ=Europe/London # Specify a timezone to use EG Europe/London.
      - PUID=1000 # for UserID
      - PGID=1000 # for GroupID
    volumes:
      - /host/path/to/config:/config # COPS Application Data.
      - /host/path/to/books:/books # Calibre metadata.db location.
    ports:
      - 80:80/tcp # WebUI

CLI

docker create \
  --name=cops \
  -e TZ=Europe/London `# Specify a timezone to use EG Europe/London.` \
  -e PUID=1000 `# for UserID` \
  -e PGID=1000 `# for GroupID` \
  -v /host/path/to/config:/config `# COPS Application Data.` \
  -v /host/path/to/books:/books `# Calibre metadata.db location.` \
  -p 80:80/tcp `# WebUI` \
  --restart unless-stopped \
  linuxserver/cops:2.5.6