Skip to content

Commit

Permalink
docker docs: fix image name
Browse files Browse the repository at this point in the history
  • Loading branch information
drakkan committed Oct 14, 2020
1 parent 6c0839e commit 00510a6
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docker/README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# 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

Starting a SFTPGo instance is simple:

```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.
Expand Down Expand Up @@ -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/sftpgohome,target=/var/lib/sftpgo \
-e SFTPGO_HTTPD__BIND_PORT=8090 \
-d "sftpgo:edge"
-d "drakkan/sftpgo:edge"
```

As you can see SFTPGo uses two volumes:
Expand Down

0 comments on commit 00510a6

Please sign in to comment.