33 lines
727 B
Markdown
33 lines
727 B
Markdown
# Grafana-Loki-Minio
|
|
|
|
## Description
|
|
## Requirements
|
|
### Minio
|
|
Create the folder where the minio data will be stored
|
|
```bash
|
|
sudo mkdir -p /home/docker/minio
|
|
```
|
|
|
|
Copy the `.env-dist` file to `.env` and update it with values appropriate for your setup.
|
|
```bash
|
|
MINIO_DATA_ROOT_DIR=/home/docker/minio
|
|
MINIO_ACCESS_KEY=minio
|
|
MINIO_SECRET_KEY=minio123
|
|
```
|
|
|
|
## Run
|
|
```bash
|
|
docker compose up -d
|
|
```
|
|
|
|
## Access
|
|
|
|
* Minio - http://* <server_fqdn>:9001
|
|
|
|
|
|
## Sources
|
|
* https://thanhtunguet.info/posts/install-minio-using-docker-compose/
|
|
* https://min.io/docs/minio/container/index.html
|
|
* https://www.nathaniel-walser.com/docker-compose-templates/minio
|
|
* https://github.com/Anagraph/minio-docker-config/blob/master/docker-compose.yaml
|