mirror of
https://github.com/BgaSol/sol-cloud
synced 2026-04-21 17:17:16 +00:00
18 lines
No EOL
436 B
YAML
18 lines
No EOL
436 B
YAML
networks:
|
|
cloud-app:
|
|
external: true
|
|
services:
|
|
minio-init:
|
|
image: minio/mc
|
|
entrypoint: [ "/bin/sh", "-c" ]
|
|
command: >
|
|
"bash /init-buckets.sh"
|
|
environment:
|
|
MINIO_ROOT_USER: ${MINIO_ROOT_USER}
|
|
MINIO_ROOT_PASSWORD: ${MINIO_ROOT_PASSWORD}
|
|
MINIO_HOST: cloud-app-minio
|
|
MINIO_PORT: 9000
|
|
volumes:
|
|
- ./config/minio/init-buckets.sh:/init-buckets.sh:ro
|
|
networks:
|
|
- cloud-app |