Created
January 24, 2018 06:55
-
-
Save masiuchi/189e237ff05afd87f0e387fed6bb0368 to your computer and use it in GitHub Desktop.
test ftp server by docker-compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3' | |
services: | |
ftp: | |
image: mcreations/ftp | |
ports: | |
- '10021:21' | |
- '65000-65004:65000-65004' | |
environment: | |
- FTP_USER=ftpuser | |
- FTP_PASS=password | |
- HOST=localhost | |
- PASV_MIN_PORT=65000 | |
- PASV_MAX_PORT=65004 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment