We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I've run into the following issue when using the given examples:
Fatal: parsing repository location failed: invalid backend If the repo is in a local directory, you need to add a `local:` prefix
The problem seems to be the false quoting of the RESTIC_REPOSITORY environment variable:
environment: - RESTIC_REPOSITORY="b2:bucket:some/path"
For me the following version is working:
environment: - "RESTIC_REPOSITORY=b2:bucket:some/path"
update: the same issue also applied to the CRON_*_EXPRESSION environment variables
CRON_*_EXPRESSION
my setup: Docker version 18.09.0-ce, build 4d60db472b docker-compose version 1.23.2, build unknown
I didn't find anything about quoting in the docker compose documentation, but I've found the following stackoverflow question:
https://stackoverflow.com/questions/41988809/docker-compose-how-to-escape-environment-variables
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I've run into the following issue when using the given examples:
The problem seems to be the false quoting of the RESTIC_REPOSITORY environment variable:
For me the following version is working:
update: the same issue also applied to the
CRON_*_EXPRESSION
environment variablesmy setup:
Docker version 18.09.0-ce, build 4d60db472b
docker-compose version 1.23.2, build unknown
I didn't find anything about quoting in the docker compose documentation, but I've found the following stackoverflow question:
https://stackoverflow.com/questions/41988809/docker-compose-how-to-escape-environment-variables
The text was updated successfully, but these errors were encountered: