@@ -20,30 +20,35 @@ services:
2020 - MINIO_ACCESS_KEY=datajoint
2121 - MINIO_SECRET_KEY=datajoint
2222 # ports:
23- # - "80:80 "
23+ # - "9000:9000 "
2424 # To persist MinIO data and config
2525 # volumes:
2626 # - ./minio/data:/data
2727 # - ./minio/config:/root/.minio
28- command : server --address ":80 " /data
28+ command : server --address ":9000 " /data
2929 healthcheck :
30- test : ["CMD", "curl", "--fail", "http://minio:80 /minio/health/live"]
30+ test : ["CMD", "curl", "--fail", "http://minio:9000 /minio/health/live"]
3131 timeout : 5s
3232 retries : 60
3333 interval : 1s
3434 fakeservices.datajoint.io :
3535 << : *net
36- image : raphaelguzman/nginx:v0.0.5
36+ image : raphaelguzman/nginx:v0.0.6
3737 environment :
3838 - ADD_db_TYPE=DATABASE
3939 - ADD_db_ENDPOINT=db:3306
4040 - ADD_minio_TYPE=MINIO
41- - ADD_minio_ENDPOINT=minio:80
42- - ADD_minio_PREFIX=/
41+ - ADD_minio_ENDPOINT=minio:9000
42+ - ADD_minio_PORT=80 # allow unencrypted connections
43+ - ADD_minio_PREFIX=/datajoint
44+ - ADD_browser_TYPE=MINIOADMIN
45+ - ADD_browser_ENDPOINT=minio:9000
46+ - ADD_browser_PORT=80 # allow unencrypted connections
4347 ports :
4448 - " 80:80"
4549 - " 443:443"
4650 - " 3306:3306"
51+ - " 9000:9000"
4752 depends_on :
4853 db :
4954 condition : service_healthy
@@ -66,7 +71,7 @@ services:
6671 - S3_ENDPOINT=fakeservices.datajoint.io
6772 - S3_ACCESS_KEY=datajoint
6873 - S3_SECRET_KEY=datajoint
69- - S3_BUCKET=datajoint- test
74+ - S3_BUCKET=datajoint. test
7075 - PYTHON_USER=dja
7176 - JUPYTER_PASSWORD=datajoint
7277 - DISPLAY
0 commit comments