Run epubcheck on docker
$ docker pull atyasu/epubcheck
$ docker run -t -i --rm -v "$(pwd):/app/data" gnue/epubcheck [OPTIONS] [file...]
docker run -t -i --rm atyasu/epubcheck -h$file is file path$fname is file name without file exstention$ docker-compose up
or
$ docker-compose run --rm epubcheck [OPTIONS] [file...]
Directory structure:
.
├── docker-compose.yml # docker-compose configuration file
├── data # EPUB files
│ ├── book_01.epub
│ ├── book_02.epub
│ └── ...
└── log # Output log files
└── ...
docker-compose.yml:
epubcheck:
environment:
EPUBCHECK_FLAGS: "--json log/$$fname.json"
image: atyasu/epubcheck
volumes:
- "./data:/app/data:ro"
- "./log:/app/log"
Content type
Image
Digest
Size
91.4 MB
Last updated
over 5 years ago
docker pull atyasu/epubcheck