2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2026-01-02 02:57:26 +01:00

add minio

This commit is contained in:
kev
2017-10-03 12:33:31 +08:00
parent c64dcdf96f
commit 55e362977f
3 changed files with 66 additions and 0 deletions

9
minio/docker-compose.yml Normal file
View File

@@ -0,0 +1,9 @@
minio:
image: minio/minio
command: server /data
ports:
- "9000:9000"
volumes:
- ./data:/data
- ./conf:/root/.minio
restart: always