You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cause your FTP server tells to your PC FTP client to connect to 0.0.0.0 so why you need to specify correct external IP address
I tried it, but it gets stuck in the 'compose up' process and returns exit code 2.
Therefore, I customized a Dockerfile to copy it into the container again
like this:
i create ftp server with this docker compose:
services:
ftp-server:
container_name: ftp-server
environment:
- FTP_PASS=<my - pass>
- FTP_USER=anhdai
image: garethflowers/ftp-server
ports:
- '20-21:20-21/tcp'
- '40000-40009:40000-40009/tcp'
volumes:
- './data:/home/anhdai'
but get error when try login from windows
this ftp server log:
how to fix this?
The text was updated successfully, but these errors were encountered: