-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathrustfs.json
More file actions
55 lines (55 loc) · 2.06 KB
/
rustfs.json
File metadata and controls
55 lines (55 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"RustFS": {
"description": "RustFS is an S3-compatible object storage server. <a href='https://rockstor.com/docs/interface/docker-based-rock-ons/rustfs.html' target='_blank'>Rock-on guide</a>.<p>Based on the <a href='https://hub.docker.com/r/rustfs/rustfs' target='_blank'>official OCI image</a>, available for amd64 and arm64 architecture.</p>",
"version": "1.0",
"website": "https://rustfs.com",
"more_info": "This Rock-on uses the official RustFS OCI image to implement a single RustFS instance with a single object storage share, suitable for use on a private network. If your connections traverse a network you do not control, consider using a VPN for encryption.",
"containers": {
"rustfs": {
"image": "rustfs/rustfs",
"launch_order": 1,
"ports": {
"9000": {
"description": "RustFS API port.",
"label": "API port [e.g. 9000]",
"host_default": 9000,
"protocol": "tcp"
},
"9001": {
"description": "Enable RustFS Web management port.",
"label": "Web UI port [e.g. 9001]",
"host_default": 9001,
"protocol": "tcp",
"ui": true
}
},
"volumes": {
"/data": {
"description": "RustFS object storage, must be (10001:10001).",
"label": "RustFS Object Storage [e.g. rustfs-obj-store]"
}
},
"cmd_arguments": [
[
"--address=:9000",
"/data"
]
],
"environment": {
"RUSTFS_ACCESS_KEY": {
"description": "RustFS Access Key.",
"label": "Access Key [8-128 alphanumerics]"
},
"RUSTFS_CONSOLE_ENABLE": {
"description": "Enable RustFS Web management interface (true or false).",
"label": "Enable Console [e.g. true]"
},
"RUSTFS_SECRET_KEY": {
"description": "RustFS Secret Key.",
"label": "Secret Key [8-128 alphanumerics]"
}
}
}
}
}
}