Skip to content

Instantly share code, notes, and snippets.

@sscovil
Created December 2, 2023 18:42
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 sscovil/93d50905848c2633c504971e4e7cd343 to your computer and use it in GitHub Desktop.
Save sscovil/93d50905848c2633c504971e4e7cd343 to your computer and use it in GitHub Desktop.
Minio (S3 alternative) w/ Docker Compose
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