Created by Daniel Kravec, on November 15, 2022
This project is to test the Minio S3 Storage. This will hopefully be used in the future to store the images and videos for interact.
https://min.io/docs/minio/linux/developers/minio-drivers.html#id5
https://min.io/docs/minio/linux/developers/javascript/minio-javascript.html
https://uploadcare.com/blog/html-file-upload-button/
https://blog.logrocket.com/how-to-build-file-upload-service-vanilla-javascript/
docker run -p 9000:9000 -p 9090:9090 -v ~/minio/data:/data quay.io/minio/minio server /data --console-address ":9090"
docker run -id -p 9000:9000 -p 9090:9090 -e MINIO_ROOT_USER=user -e MINIO_ROOT_PASSWORD=pass -v ~/minio/data:/data --name minio-container quay.io/minio/minio server /data --console-address ":9090"
- Initial commit
- basic home directory
- working docker-compose file for creating a minio server
- currently working on the upload function (not done)
- Added new docker line to start up minio server with username and password on server PC
- Project is not to be ran independently, will be included into API (currently, could change)