Add Minio container

Minio is an s3 compatible server written in go.
This commit is contained in:
Thor Erik Lie
2017-03-05 15:06:22 +01:00
parent 84b742315a
commit a7503ce3f3
6 changed files with 94 additions and 1 deletions

View File

@ -29,6 +29,7 @@ services:
- INSTALL_LARAVEL_ENVOY=false
- INSTALL_DEPLOYER=false
- INSTALL_LINUXBREW=false
- INSTALL_MC=false
- PUID=1000
- PGID=1000
- NODE_VERSION=stable
@ -120,6 +121,18 @@ services:
links:
- workspace
### Minio Container #########################################
minio:
build: ./minio
volumes:
- minio:/export
ports:
- "9000:9000"
environment:
MINIO_ACCESS_KEY: access
MINIO_SECRET_KEY: secretkey
### MySQL Container #########################################
mysql:
@ -354,6 +367,8 @@ volumes:
driver: "local"
mongo:
driver: "local"
minio:
driver: "local"
rethinkdb:
driver: "local"
phpmyadmin: