mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2026-02-03 14:13:26 +00:00
Couldn't upload file to docker #244
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 @ichcc on GitHub.
Docker run as recommended
Basedir exist, full access
@dtsdwarak commented on GitHub:
The same has been resolved in a previous issue - #187
Try something like the following -
@dopessoa commented on GitHub:
The problem is that /tmp does not exist inside the docker container, the method used to create the directory in storage.go does not create directories recursively, so it can't create any of the temporary folders inside /tmp. I've sent a PR that fixes this issue.
On the other hand, the documentation should be improved to an example that works, adding an example with a volume would be nice too.
@ichcc commented on GitHub:
Thanks a lot!