I need to mount a FUSE-based filesystem (using rclone) on a docker container that must be executed on AWS ECS Fargate.
I have no problem running the container locally using the following command:
docker run --rm --device /dev/fuse --cap-add SYS_ADMIN <IMAGE_NAME>
While on AWS ECS Fargate the docker container is not working properly because I haven't found how to set the flags --device and --cap-add when I define the task on AWS ECS. Any suggestion would be really appreciated.