Make sure Docker is installed!
Get your Minio endpoint url, accesskey, and secretkey ready!
docker plugin install rexray/s3fs \
S3FS_OPTIONS="allow_other,use_path_request_style,nonempty,url=http://<minio_endpoint_url>"
S3FS_ENDPOINT="http://<minio_endpoint_url>" \
S3FS_ACCESSKEY="<minio_accesskey>" \
S3FS_SECRETKEY="<minio_secretkey>"
docker volume ls
There should be volume names listed similarly to this:
DRIVER VOLUME_NAME
rexray/s3fs some_volume_1
rexray/s3fs some_volume_2
This should ideally work with other providers as well... just not Minio.
Just make sure to change the endpoint in S3FS_ENDPOINT
and inside S3FS_OPTIONS
as well!