Sign inSign up

juicedata/mount

By juicedata

Updated about 23 hours ago

Image
1

10M+

juicedata/mount repository overview

Quick reference

JuiceFS

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. ​ JuiceFS Logo

How to use this image

​ Differentiating versions through tags:

  • ee represents Enterprise Edition, also known as the "Cloud Service Edition". You can choose a specific version number like ee-4.9.23, or select the latest development version with ee-nightly.
  • ce represents Community Edition. You can choose a specific version number like ce-v1.1.0, or select the latest development version with ce-nightly. The tag latest is deprecated, please use specific version tag instead. ​

Community Edition

Create a volume

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

Mount a volume

docker run --name myjfs -d \
	juicedata/mount:ce-v1.1.0 juicefs mount \
	...
	redis://127.0.0.1/1 myjfs /mnt

Cloud Service

docker run --name myjfs -d \
	juicedata/mount:ee-4.9.23 juicefs mount \
	--token xxxx \
	--access-key=ACCESSKEY \
	--secret-key=SECRETKEY \
	...
	myjfs /mnt

How to use in docker compose

Mapping the mount point in container to the host

How to use in JuiceFS CSI Driver

How to customize the container image of Mount Pod

Tag summary

Content type

Image

Digest

sha256:ee34645ea

Size

259.2 MB

Last updated

about 2 months ago

docker pull juicedata/mount