Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andreygubarev/docker-compose-minio
https://github.com/andreygubarev/docker-compose-minio
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/andreygubarev/docker-compose-minio
- Owner: andreygubarev
- License: mit
- Created: 2023-10-27T07:53:40.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2023-10-27T22:06:08.000Z (about 1 year ago)
- Last Synced: 2024-10-10T22:15:01.864Z (about 1 month ago)
- Language: Makefile
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Docker Compose for Minio
## Usage
```bash
# create .env file and encrypt it
direnv allow .
make install # optional, if you want need to setup new tunnel
make up # start minio
make down # stop minio
```## AWS CLI configuration
```ini
# ~/.aws/config
[profile minio]
region = us-east-1
output = json
endpoint_url = https://minio.andreygubarev.cloud/
s3 =
signature_version = s3v4# ~/.aws/credentials
[minio]
aws_access_key_id =
aws_secret_access_key =
```## Rclone configuration
```ini
[minio]
type = s3
provider = Minio
access_key_id =
secret_access_key =
endpoint = https://minio.andreygubarev.cloud/
acl = private
```