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
- Host: GitHub
- URL: https://github.com/chickenzord/docker-alpine-cops
- Owner: chickenzord
- License: gpl-3.0
- Created: 2016-04-13T10:08:53.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-04-13T11:46:56.000Z (over 9 years ago)
- Last Synced: 2025-02-02T01:42:27.960Z (8 months ago)
- Language: PHP
- Size: 17.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)