-
Notifications
You must be signed in to change notification settings - Fork 97
/
minio.json
56 lines (56 loc) · 2.65 KB
/
minio.json
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
56
{
"MinIO": {
"description": "MinIO is an S3-compatible object storage server.<p>Based on the official docker image: <a href='https://hub.docker.com/r/minio/minio' target='_blank'>https://hub.docker.com/r/minio/minio</a>, available for amd64 and arm64 architecture.</p>",
"version": "1.2",
"website": "https://minio.io",
"more_info": "This Rock-on uses the official MinIO Docker image to implement a single MinIO 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. IMPORTANT: Read and understand the MinIO Rock-on documentation concerning port selection before installing this Rock-on.",
"ui": {
"https": false,
"slug": ""
},
"volume_add_support": false,
"containers": {
"MinIO": {
"image": "minio/minio",
"launch_order": 1,
"ports": {
"9000": {
"description": "Port for API access, default 9000",
"host_default": 9000,
"label": "MinIO API Port",
"ui": false
},
"9001": {
"description": "Port for Admin Portal access, default 9001",
"host_default": 9001,
"label": "MinIO Admin Portal Port",
"ui": true
}
},
"volumes": {
"/data": {
"description": "Choose a share for MinIO object storage",
"label": "MinIO Object Storage"
}
},
"cmd_arguments": [
[ "server" , "/data" ]
],
"environment": {
"MINIO_ROOT_USER": {
"description": "MinIO Administrator Username, 3 to 128 alphanumeric characters",
"label": "MinIO Admin User"
},
"MINIO_ROOT_PASSWORD": {
"description": "MinIO Administrator Password, 8 to 128 alphanumeric characters",
"label": "MinIO Admin Password"
},
"MINIO_CONSOLE_ADDRESS": {
"description": "MinIO Console Address, for example, \":9001\". Must be the same port as \"MinIO Admin Portal Port\".",
"label": "MinIO Console Address"
}
}
}
}
}
}