mirror of
https://github.com/sigoden/dufs.git
synced 2026-04-08 16:49:02 +03:00
[GH-ISSUE #647] Environment variable DUFS_AUTH is broken when using :rw #396
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @literon36 on GitHub (Oct 30, 2025).
Original GitHub issue: https://github.com/sigoden/dufs/issues/647
Problem
Setting the env var
DUFS_AUTH="admin:admin@/:rw"results inError: Invalid auth value "admin:admin@/:rw".However using
DUFS_AUTH="admin:admin@/"(without :rw) or using the CLI by settingcommand: -a admin:admin@/:rwdoes work.Configuration
Log
Screenshots/Media
n/a
Environment Information
@sigoden commented on GitHub (Nov 3, 2025):
The quotes in your Dockerfile are incorrect.
@literon36 commented on GitHub (Nov 3, 2025):
This does indeed explain a lot lol
I copied it straight from the README section about env vars... Maybe the the quotes there should be removed then(?) or are they needed in the command line to make sure the Shell doesn't interpret the symbols?
Thanks for making this neat project btw, it's quite useful! :)