12345678910111213141516171819202122232425 |
- version: "3.8"
- services:
- postgres:
- image: postgres:14-alpine
- environment:
- POSTGRES_PASSWORD: "postgres"
-
- ports:
- - "5432:5432"
- s3:
- image: minio/minio:edge-cicd
- environment:
- MINIO_DOMAIN: localhost
- MINIO_ROOT_USER: cleanpython
- MINIO_ROOT_PASSWORD: cleanpython
- ports:
- - "9000:9000"
- fluentbit:
- image: fluent/fluent-bit:1.9
- ports:
- - "24224:24224"
|