Merge pull request #3020 from memochou1993/master
Add console port and fix environments for minio
This commit is contained in:
		@@ -486,6 +486,9 @@ SELENIUM_PORT=4444
 | 
			
		||||
### MINIO #################################################
 | 
			
		||||
 | 
			
		||||
MINIO_PORT=9000
 | 
			
		||||
MINIO_CONSOLE_PORT=9001
 | 
			
		||||
MINIO_ROOT_USER=laradock
 | 
			
		||||
MINIO_ROOT_PASSWORD=laradock
 | 
			
		||||
 | 
			
		||||
### ADMINER ###############################################
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -468,9 +468,10 @@ services:
 | 
			
		||||
        - ${DATA_PATH_HOST}/minio/config:/root/.minio
 | 
			
		||||
      ports:
 | 
			
		||||
        - "${MINIO_PORT}:9000"
 | 
			
		||||
        - "${MINIO_CONSOLE_PORT}:9001"
 | 
			
		||||
      environment:
 | 
			
		||||
        - MINIO_ACCESS_KEY=access
 | 
			
		||||
        - MINIO_SECRET_KEY=secretkey
 | 
			
		||||
        - MINIO_ROOT_USER=${MINIO_ROOT_USER}
 | 
			
		||||
        - MINIO_ROOT_PASSWORD=${MINIO_ROOT_PASSWORD}
 | 
			
		||||
      networks:
 | 
			
		||||
        - frontend
 | 
			
		||||
        - backend
 | 
			
		||||
 
 | 
			
		||||
@@ -2,4 +2,4 @@ FROM minio/minio
 | 
			
		||||
 | 
			
		||||
LABEL maintainer="Thor Erik Lie <thor@thorerik.com>"
 | 
			
		||||
 | 
			
		||||
ENTRYPOINT ["minio", "server", "/export"]
 | 
			
		||||
ENTRYPOINT ["minio", "server", "--console-address", ":9001", "/export"]
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user