Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
better describe how to test with ftp server setup
  • Loading branch information
phideg authored Feb 10, 2024
1 parent 7839260 commit 93e4b15
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,14 @@ Start the ftp server as a docker container. User name is `neptun` and password `
docker run --rm -d --network=host --name ftp -e USERS="neptun|neptun" delfer/alpine-ftp-server
```

> Remark: With this kind of docker execution no data will remain after the container was stopped.
> ⚠️ **Attention:**
> - The ftp server is only intended to run on the localhost. If you leave the `--network=host` option you will not be able to access the ftp server as expected. More info about the docker container and its options can be found [here](https://github.com/delfer/docker-alpine-ftp-server)
> - Depending on your user and distro it might be even necessary to run the docker as `root`. So just start it with `sudo ...`
> 💡 **Remark:**
> With this kind of docker execution no data will remain after the container was stopped.

> Hint: Here the ftp server is only intended to run on the localhost. If you leave the `--network=host` option you will not be able to access the ftp server as expected. More info about the docker container and its options can be found [here](https://github.com/delfer/docker-alpine-ftp-server)

The FTP server can be stopped with the following docker command

Expand Down

0 comments on commit 93e4b15

Please sign in to comment.