Skip to content

Instantly share code, notes, and snippets.

@Lewiscowles1986
Created October 13, 2021 18:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Lewiscowles1986/da45f6082d0be451f3a3c93012f57dda to your computer and use it in GitHub Desktop.
Save Lewiscowles1986/da45f6082d0be451f3a3c93012f57dda to your computer and use it in GitHub Desktop.
Minio
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