kompose/script/test/fixtures/env-dotenv/compose.yaml
2025-05-14 22:46:46 +08:00

12 lines
307 B
YAML

version: '3'
services:
minio:
image: quay.io/minio/minio:RELEASE.2023-12-20T01-00-02Z
env_file: .env
environment:
- MINIO_ROOT_USER=${MINIO_USER}
- MINIO_ROOT_PASSWORD=${MINIO_PASSWORD}
- TZ=${TIMEZONE}
ports:
- ${MINIO_PORT}:9000
- ${MINIO_CONSOLE_PORT}:9001