mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2026-02-06 23:42:17 +00:00
Docker compose #192
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 @splifter on GitHub.
Hey everyone,
i've tried to run transfer.sh via docker-compose:
transfer:
container_name: transfer
image: dutchcoders/transfer.sh
environment:
- basedir=/tmp/
- provider=S3
- s3-endpoint=https://minio.domain.tld
- bucket=transfer.sh
- aws-access-key=SUPERSECUREKEY
- aws-secret-key=SUPERSECT
- listener=1337
but i alway get:
panic: Provider not set or invalid.Any suggestions on how to fix this?
Ty!
@splifter commented on GitHub:
fixed it with using the command option within the docker-compose file:
command: --basedir /tmp/ --provider s3 --s3-endpoint https://minio.domain.tld --bucket transfer.sh --aws-access-key SUPERSECUREKEY--aws-secret-key SUPERSECT--listener 1337