Difference between revisions of "Sftpgo"
Jump to navigation
Jump to search
| Line 3: | Line 3: | ||
# Bash Examples | # Bash Examples | ||
| − | up | + | /app/sftpgo/up |
``` | ``` | ||
for dir in /app/sftpgo/data /app/sftpgo/home /app/sftpgo/share; do | for dir in /app/sftpgo/data /app/sftpgo/home /app/sftpgo/share; do | ||
| Line 19: | Line 19: | ||
``` | ``` | ||
| − | down | + | /app/sftpgo/down |
``` | ``` | ||
docker stop sftpgo | docker stop sftpgo | ||
| Line 25: | Line 25: | ||
``` | ``` | ||
| − | apigetusers | + | /app/sftpgo/apigetusers |
``` | ``` | ||
rsp=$(curl -s http://admin:password@sftp.example.io:8080/api/v2/token) | rsp=$(curl -s http://admin:password@sftp.example.io:8080/api/v2/token) | ||
Revision as of 06:15, 6 March 2021
https://github.com/drakkan/sftpgo
Bash Examples
/app/sftpgo/up
for dir in /app/sftpgo/data /app/sftpgo/home /app/sftpgo/share; do
mkdir -p $dir
done
docker run --name sftpgo \
-p 0.0.0.0:8080:8090 \
-p 2022:2022 \
--mount type=bind,source=/app/sftpgo/data,target=/srv/sftpgo \
--mount type=bind,source=/app/sftpgo/home,target=/var/lib/sftpgo \
--mount type=bind,source=/app/sftpgo/share,target=/share \
-e SFTPGO_HTTPD__BINDINGS__0__PORT=8090 \
-d "drakkan/sftpgo:latest"
/app/sftpgo/down
docker stop sftpgo docker rm -f sftpgo
/app/sftpgo/apigetusers
rsp=$(curl -s http://admin:password@sftp.example.io:8080/api/v2/token)
token=$(echo $rsp | jq -r '.access_token')
apiurl="http://127.0.0.1:8080/api/v2"
curl -H 'Accept: application/json' -H "Authorization: Bearer ${token}" ${apiurl}/users