/penelope-docker

the Penelope tool pre-installed in a docker image

Primary LanguageMakefileMIT LicenseMIT

Penelope Docker

The tool Penelope pre-installed in a Docker image.

Usage

Docker must be installed before to use the following command lines.

# Try to display the help page of Penelope
docker run thinow/penelope -h

From now you are able to run all the commands provided by Penelope (see the original documentation). You need to replace penelope with docker run -v $(pwd):/opt/penelope thinow/penelope. For instance :

# Convert en->it dictionary dict.csv (in CSV format) into output.zip (in StarDict format)
docker run -v $(pwd):/opt/penelope thinow/penelope -i dict.csv -j csv -f en -t it -p stardict -o output.zip

Contributing

# Build the Docker image
make build

# Push an image to the Docker Hub
make push