![]() |
4 years ago | |
---|---|---|
.. | ||
rest-api-cli | 4 years ago | |
scripts | 4 years ago | |
sftpgo | 4 years ago | |
README.md | 4 years ago |
SFTPGo provides an official Docker image, it is available on both Docker Hub and on GitHub Container Registry.
sftpgo
server instanceStarting a SFTPGo instance is simple:
docker run --name some-sftpgo -p 127.0.0.1:8080:8080 -p 2022:2022 -d "drakkan/sftpgo:tag"
... where some-sftpgo
is the name you want to assign to your container, and tag
is the tag specifying the SFTPGo version you want. See the list above for relevant tags.
Now visit http://localhost:8080/ and create a new SFTPGo user. The SFTP service is available on port 2022.
If you prefer GitHub Container Registry to Docker Hub replace drakkan/sftpgo:tag
with ghcr.io/drakkan/sftpgo:tag
.
The docker exec command allows you to run commands inside a Docker container. The following command line will give you a shell inside your sftpgo
container:
docker exec -it some-sftpgo sh
The logs are available through Docker's container log:
docker logs some-sftpgo
Important note: There are several ways to store data used by applications that run in Docker containers. We encourage users of the SFTPGo images to familiarize themselves with the options available, including:
1000
as UID/GID by default.The Docker documentation is a good starting point for understanding the different storage options and variations, and there are multiple blogs and forum postings that discuss and give advice in this area. We will simply show the basic procedure here for the latter option above:
/my/own/sftpgodata
./my/own/sftpgohome
.Start your SFTPGo container like this:
docker run --name some-sftpgo \
-p 127.0.0.1:8080:8090 \
-p 2022:2022 \
--mount type=bind,source=/my/own/sftpgodata,target=/srv/sftpgo \
--mount type=bind,source=/my/own/sftpgohome,target=/var/lib/sftpgo \
-e SFTPGO_HTTPD__BIND_PORT=8090 \
-d "drakkan/sftpgo:tag"
As you can see SFTPGo uses two volumes:
/srv/sftpgo
to handle persistent data. The default home directory for SFTP/FTP/WebDAV users is /srv/sftpgo/data/<username>
. Backups are stored in /srv/sftpgo/backups
/var/lib/sftpgo
is the home directory for the sftpgo system user defined inside the container. This is the container working directory too, host keys will be created here when using the default configuration.The runtime configuration can be customized via environment variables that you can set passing the -e
option to the docker run
command or inside the environment
section if you are using docker stack deploy or docker-compose.
Please take a look here to learn how to configure SFTPGo via environment variables.
Alternately you can mount your custom configuration file to /var/lib/sftpgo
or /var/lib/sftpgo/.config/sftpgo
.
Initial data can be loaded in the following ways:
--loaddata-from
flag or the SFTPGO_LOADDATA_FROM
environment variablePlease take a look here for more details.
The SFTPGo image runs using 1000
as UID/GID by default. If you know the permissions of your data and/or configuration directory are already set appropriately or you have need of running SFTPGo with a specific UID/GID, it is possible to invoke this image with --user
set to any value (other than root/0
) in order to achieve the desired access/configuration:
$ ls -lnd data
drwxr-xr-x 2 1100 1100 6 7 nov 09.09 data
$ ls -lnd config
drwxr-xr-x 2 1100 1100 6 7 nov 09.19 config
With the above directory permissions, you can start a SFTPGo instance like this:
docker run --name some-sftpgo \
--user 1100:1100 \
-p 127.0.0.1:8080:8080 \
-p 2022:2022 \
--mount type=bind,source="${PWD}/data",target=/srv/sftpgo \
--mount type=bind,source="${PWD}/config",target=/var/lib/sftpgo \
-d "drakkan/sftpgo:tag"
Alternately build your own image using the official one as a base, here is a sample Dockerfile:
FROM drakkan/sftpgo:tag
USER root
RUN chown -R 1100:1100 /etc/sftpgo && chown 1100:1100 /var/lib/sftpgo /srv/sftpgo
USER 1100:1100
The sftpgo
images comes in many flavors, each designed for a specific use case. The edge
and edge-alpine
tags are updated after each new commit.
sftpgo:<version>
This is the defacto image, it is based on Debian, available in the debian
official image. If you are unsure about what your needs are, you probably want to use this one.
sftpgo:<version>-alpine
This image is based on the popular Alpine Linux project, available in the alpine
official image. Alpine Linux is much smaller than most distribution base images (~5MB), and thus leads to much slimmer images in general.
This variant is highly recommended when final image size being as small as possible is desired. The main caveat to note is that it does use musl libc instead of glibc and friends, so certain software might run into issues depending on the depth of their libc requirements. However, most software doesn't have an issue with this, so this variant is usually a very safe choice. See this Hacker News comment thread for more discussion of the issues that might arise and some pro/con comparisons of using Alpine-based images.
sftpgo:<suite>-slim
These tags provide a slimmer image that does not include the optional git
and rsync
dependencies.
An helm chart is available. You can find the source code here.