Skip to content

Instantly share code, notes, and snippets.

@masiuchi
Created January 24, 2018 06:55
Show Gist options
  • Save masiuchi/189e237ff05afd87f0e387fed6bb0368 to your computer and use it in GitHub Desktop.
Save masiuchi/189e237ff05afd87f0e387fed6bb0368 to your computer and use it in GitHub Desktop.
test ftp server by docker-compose
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