FTP file into docker container on remote server

rurp picture rurp · Sep 15, 2017 · Viewed 12.7k times · Source

How can I transfer transfer files into a Docker container running on a remote Ubuntu server using an FTP client? I can SSH into the server and use docker cp, which works fine. But I have a client who needs to be able to do so with something like FileZilla. Is this possible?

Answer

Leonardo Cabré picture Leonardo Cabré · Sep 15, 2017

Im not an expert with docker, but you could try this:

You can expose several ports when you run the container. So, you can expose the FTP port also, something like this.

docker run --name containername -p 3000:80 -p 3001:21 -d dockerimagename

In this example with the -p 3001:21 you are exposing your port 21 of the container to your port 3001 of the Server, so you can enter with filezilla with the ip of your server for host, and 3001 as port.