Title logo
linuxserver/cops.

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

22,396,281 93 arm64 amd64

Build Information

General build information for this image

Docker Hub linuxserver/cops
Build Time 21 Apr 2024 21:06:32
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.4 21 Apr 2024 at 21:06:31

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.4
    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.4