Created
July 4, 2018 19:25
-
-
Save leanderjanssen/5b7052249427d2039a50654004eccb9f to your computer and use it in GitHub Desktop.
minio
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
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