Created
October 13, 2021 18:39
-
-
Save Lewiscowles1986/da45f6082d0be451f3a3c93012f57dda to your computer and use it in GitHub Desktop.
Minio
This file contains 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
version: '3.5' | |
services: | |
# LewisCowles local docker-compose partial for Minio/S3 | |
minio: | |
image: minio/minio | |
ports: | |
- 9000:9000 | |
restart: always | |
volumes: | |
- ./data/minio:/data | |
environment: | |
MINIO_ACCESS_KEY: 'AKIAIOSFODNN7EXAMPLE' | |
MINIO_SECRET_KEY: 'wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY' | |
# VIRTUAL_HOST: "minio.localhost" | |
# VIRTUAL_PORT: 9000 | |
command: "server /data" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment