docker docs: fix image name

This commit is contained in:
Nicola Murino 2020-10-14 08:13:24 +02:00
parent 6c0839e197
commit 00510a6af8
No known key found for this signature in database
GPG key ID: 2F1FB59433D5A8CB

View file

@ -1,13 +1,13 @@
# Official Docker images # Official Docker images
SFTPGo provides official Docker images. They are available [here](https://hub.docker.com/r/drakkan/sftpgo). SFTPGo provides official Docker images. They are available on [Docker Hub](https://hub.docker.com/r/drakkan/sftpgo).
## Start a SFTPGo server instance ## Start a SFTPGo server instance
Starting a SFTPGo instance is simple: Starting a SFTPGo instance is simple:
```shell ```shell
docker run --name some-sftpgo -p 127.0.0.1:8080:8080 -p 2022:2022 -d "sftpgo:edge" docker run --name some-sftpgo -p 127.0.0.1:8080:8080 -p 2022:2022 -d "drakkan/sftpgo:edge"
``` ```
Now visit [http://localhost:8080/](http://localhost:8080/) and create a new SFTPGo user. The SFTP service is available on port 2022. Now visit [http://localhost:8080/](http://localhost:8080/) and create a new SFTPGo user. The SFTP service is available on port 2022.
@ -40,7 +40,7 @@ docker run --name some-sftpgo \
--mount type=bind,source=/my/own/sftpgodata,target=/srv/sftpgo \ --mount type=bind,source=/my/own/sftpgodata,target=/srv/sftpgo \
--mount type=bind,source=/my/own/sftpgohome,target=/var/lib/sftpgo \ --mount type=bind,source=/my/own/sftpgohome,target=/var/lib/sftpgo \
-e SFTPGO_HTTPD__BIND_PORT=8090 \ -e SFTPGO_HTTPD__BIND_PORT=8090 \
-d "sftpgo:edge" -d "drakkan/sftpgo:edge"
``` ```
As you can see SFTPGo uses two volumes: As you can see SFTPGo uses two volumes: