15
compose.yaml
15
compose.yaml
@@ -16,6 +16,20 @@ services:
|
|||||||
POSTGRES_USER: "postgres"
|
POSTGRES_USER: "postgres"
|
||||||
POSTGRES_PASSWORD: "postgres"
|
POSTGRES_PASSWORD: "postgres"
|
||||||
|
|
||||||
|
minio:
|
||||||
|
image: "quay.io/minio/minio"
|
||||||
|
entrypoint: "sh"
|
||||||
|
command: |
|
||||||
|
-c 'mkdir -p /var/lib/minio/probod && minio server --json --console-address :9001 /var/lib/minio'
|
||||||
|
ports:
|
||||||
|
- "9000:9000"
|
||||||
|
- "9001:9001"
|
||||||
|
volumes:
|
||||||
|
- "minio-data:/var/lib/minio:rw"
|
||||||
|
environment:
|
||||||
|
MINIO_ROOT_USER: "probod"
|
||||||
|
MINIO_ROOT_PASSWORD: "thisisnotasecret"
|
||||||
|
|
||||||
grafana:
|
grafana:
|
||||||
image: "grafana/grafana:latest"
|
image: "grafana/grafana:latest"
|
||||||
ports:
|
ports:
|
||||||
@@ -64,6 +78,7 @@ services:
|
|||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
postgres-data:
|
postgres-data:
|
||||||
|
minio-data:
|
||||||
grafana-data:
|
grafana-data:
|
||||||
prometheus-data:
|
prometheus-data:
|
||||||
tempo-data:
|
tempo-data:
|
||||||
|
|||||||
Reference in New Issue
Block a user