You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env bash |
|
|
|
set -euxo pipefail |
|
|
|
docker run \ |
|
-ti \ |
|
--rm \ |
|
--device=/dev/cdrom \ |
|
--mount "type=bind,source=${HOME}/.config/whipper,target=/home/worker/.config/whipper" \ |
|
--mount "type=bind,source=${HOME}/rips/output,target=/output" \ |
|
whipperteam/whipper "$@"
|
|
|