An open API service indexing awesome lists of open source software.

https://github.com/chickenzord/docker-alpine-cops

Docker image for COPS (Calibre OPDS server) based on Alpine Linux
https://github.com/chickenzord/docker-alpine-cops

Last synced: 6 months ago
JSON representation

Docker image for COPS (Calibre OPDS server) based on Alpine Linux

Awesome Lists containing this project

README

          

# COPS on Docker

Docker image for [COPS (Calibre OPDS server)](https://github.com/seblucas/cops) based on Alpine Linux

## Pulling image

```
docker pull chickenzord/cops
```

## Sample command

```
docker run --rm --name cops \
-p 80:9000 \
-v $HOME/books:/books \
-e COPS_TITLE=Books \
chickenzord/cops
```

## Exposed ports

The PHP web server is listening on `9000`, feel free to map it as you wish.

## Volumes

- `/www`: Where COPS code located
- `/books`: Mount your Calibre library here

## Configurable environment variables

- `COPS_TITLE`: Override COPS webpage title (default: Cops)

## Credits

COPS by Sébastien Lucas (https://github.com/seblucas/cops)