I want to run a docker container like this:
docker run --rm -it -v volume1:/target -v volume2:/backup duplicity-image backup-label
This would cause the following Entrypoint do get executed:
duplicity /target file:///backup/$backup-label
So my question is how do I structure the ENTRYPOINT such that it can resolve the $backup-label
and how do I pass the backup-label
in ... Do I need single quotes around it ... a dash in front of it ...?