Skip to content

Instantly share code, notes, and snippets.

@leanderjanssen
Created July 4, 2018 19:25
Show Gist options
  • Save leanderjanssen/5b7052249427d2039a50654004eccb9f to your computer and use it in GitHub Desktop.
Save leanderjanssen/5b7052249427d2039a50654004eccb9f to your computer and use it in GitHub Desktop.
minio
version: '3.3'
services:
minio:
image: training/minio:demo
volumes:
- minio-data:/export
ports:
- "9001:9000"
networks:
- minio
command: server /export
secrets:
- secret_key
- access_key
volumes:
minio-data:
networks:
minio:
driver: overlay
secrets:
secret_key:
external: true
access_key:
external: true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment