docker-compose.yaml 603 B

12345678910111213141516171819202122232425
  1. version: "3.8"
  2. services:
  3. postgres:
  4. image: postgres:14-alpine
  5. environment:
  6. POSTGRES_PASSWORD: "postgres"
  7. # command: ["postgres", "-c", "log_connections=all", "-c", "log_disconnections=all", "-c", "log_statement=all", "-c", "log_destination=stderr"]
  8. ports:
  9. - "5432:5432"
  10. s3:
  11. image: minio/minio:edge-cicd
  12. environment:
  13. MINIO_DOMAIN: localhost # virtual hosted-style access
  14. MINIO_ROOT_USER: cleanpython
  15. MINIO_ROOT_PASSWORD: cleanpython
  16. ports:
  17. - "9000:9000"
  18. fluentbit:
  19. image: fluent/fluent-bit:1.9
  20. ports:
  21. - "24224:24224"