Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion minio/egg-minio-s3.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "PTDL_v2",
"update_url": null
},
"exported_at": "2025-10-02T23:22:38+02:00",
"exported_at": "2025-10-26T13:21:49+00:00",
"name": "Minio S3",
"author": "accounts@bofanodes.io",
"description": "MinIO is a cloud storage server compatible with Amazon S3, released under Apache License v2. As an object store, MinIO can store unstructured data such as photos, videos, log files, backups and container images. The maximum size of an object is 5TB.",
Expand Down Expand Up @@ -37,6 +37,16 @@
"user_editable": true,
"rules": "required|string|in:normal,rotate,update",
"field_type": "text"
},
{
"name": "API Port",
"description": "The port to be used by the API",
"env_variable": "API_PORT",
"default_value": "0",
"user_viewable": true,
"user_editable": true,
"rules": "required|string|max:5",
"field_type": "text"
}
]
}
4 changes: 2 additions & 2 deletions minio/minio.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ echo "Your New Secret Key is: $(tput setaf 2)$MINIO_ROOT_PASSWORD"
echo "Your Old Access Key is: $(tput setaf 3)$MINIO_ROOT_USER_OLD"
echo "Your Old Access Key is: $(tput setaf 3)$MINIO_ROOT_PASSWORD_OLD"
echo "$(tput setaf 2)Booting..."
./minio server data --console-address ":$SERVER_PORT"
./minio server data --console-address ":$SERVER_PORT" --address ":$API_PORT"
else
echo "$(tput setaf 2)Booting..."
./minio server data --console-address ":$SERVER_PORT"
./minio server data --console-address ":$SERVER_PORT" --address ":$API_PORT"
fi