Remote Storage example for Umbraco
For the example to work please setup a local FTP with the following Docker Compose file:
services:
ftp:
image: bogem/ftp
container_name: ftp
ports:
- 21:21
- 47400-47470:47400-47470
environment:
- FTP_USER=umbraco
- FTP_PASS=Abc123!@
- PASV_ADDRESS=127.0.0.1
volumes:
- ftpdata:/home/vsftpd
volumes:
ftpdata: