JuiceFS is a high-performance shared file system designed for cloud-native use and released under the Apache License 2.0. It provides full POSIX compatibility, allowing almost all kinds of object storage to be used locally as massive local disks and to be mounted and read on different cross-platform and cross-region hosts at the same time.
Differentiating versions through tags:
ee-4.9.23, or select the latest development version with ee-nightly.ce-v1.1.0, or select the latest development version with ce-nightly. The tag latest is deprecated, please use specific version tag instead.
docker run --rm \
juicedata/mount:ce-v1.1.0 juicefs format \
--storage s3 \
--bucket https://xxx.xxx.xxx \
--access-key=ACCESSKEY \
--secret-key=SECRETKEY \
...
redis://127.0.0.1/1 myjfs
docker run --name myjfs -d \
juicedata/mount:ce-v1.1.0 juicefs mount \
...
redis://127.0.0.1/1 myjfs /mnt
docker run --name myjfs -d \
juicedata/mount:ee-4.9.23 juicefs mount \
--token xxxx \
--access-key=ACCESSKEY \
--secret-key=SECRETKEY \
...
myjfs /mnt
Mapping the mount point in container to the host
Content type
Image
Digest
sha256:ee34645ea…
Size
259.2 MB
Last updated
about 2 months ago
docker pull juicedata/mount