I login correctly to container with the command `sftp -P 2222 user@ip_container` To sftp shell i get this error: ``` sftp> put file.sh Uploading file.sh to /file.sh remote open("/file.sh"): Permission denied ``` I have run the container with docker-compose: ``` sftp: image: atmoz/sftp volumes: - /host/sftpdata:/home/sftp/share ports: - "2222:22" command: sftp:password:1001 ```