0

我正在尝试使用远程 FTP 作为 docker 中的 Django 媒体源。

我已经挂载了一个目录:

/mnt/ftp_media

使用 curlftpfs:

curlftpfs -o allow_other user:pass@host /mnt/ftp_media

我注意到,当尝试上传文件时,它实际上是在远程创建的,但是 django 在 chmod 上失败了:

Operation not permitted

我尝试在挂载内直接执行 chmod:

cd /mnt/ftp_mount
chmod 666 some_file.txt

但后来我也得到一个错误:

chmod: changing permissions of 'some_file.txt': Operation not permitted

即使作为root用户。我尝试使用不同的用户重新安装,但它总是产生相同的结果。只是您不应该在保险丝支架中使用 chmod 吗?

4

0 回答 0