Nginx FTP server with Docker and multiple volume
Here, we are creating ftp server with nginx docker image and mounting multiple directory as volume, so that we can access those file over the network.
sudo docker run -d --name nginx-ftp --restart=unless-stopped -p 8080:80 -v /home/user/movie/:/usr/s...
kaiyom.hashnode.dev1 min read