Created
December 2, 2023 18:42
-
-
Save sscovil/93d50905848c2633c504971e4e7cd343 to your computer and use it in GitHub Desktop.
Minio (S3 alternative) w/ Docker Compose
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
minio: | |
image: minio/minio:latest | |
command: server /data --console-address ":9001" | |
ports: | |
- 9000:9000 | |
- 9001:9001 | |
environment: | |
- MINIO_ROOT_USER=root | |
- MINIO_ROOT_PASSWORD=password | |
volumes: | |
- ./docker/minio/data:/data |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment