@@ -20,30 +20,35 @@ services:
20
20
- MINIO_ACCESS_KEY=datajoint
21
21
- MINIO_SECRET_KEY=datajoint
22
22
# ports:
23
- # - "80:80 "
23
+ # - "9000:9000 "
24
24
# To persist MinIO data and config
25
25
# volumes:
26
26
# - ./minio/data:/data
27
27
# - ./minio/config:/root/.minio
28
- command : server --address ":80 " /data
28
+ command : server --address ":9000 " /data
29
29
healthcheck :
30
- test : ["CMD", "curl", "--fail", "http://minio:80 /minio/health/live"]
30
+ test : ["CMD", "curl", "--fail", "http://minio:9000 /minio/health/live"]
31
31
timeout : 5s
32
32
retries : 60
33
33
interval : 1s
34
34
fakeservices.datajoint.io :
35
35
<< : *net
36
- image : raphaelguzman/nginx:v0.0.5
36
+ image : raphaelguzman/nginx:v0.0.6
37
37
environment :
38
38
- ADD_db_TYPE=DATABASE
39
39
- ADD_db_ENDPOINT=db:3306
40
40
- 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
43
47
ports :
44
48
- " 80:80"
45
49
- " 443:443"
46
50
- " 3306:3306"
51
+ - " 9000:9000"
47
52
depends_on :
48
53
db :
49
54
condition : service_healthy
@@ -66,7 +71,7 @@ services:
66
71
- S3_ENDPOINT=fakeservices.datajoint.io
67
72
- S3_ACCESS_KEY=datajoint
68
73
- S3_SECRET_KEY=datajoint
69
- - S3_BUCKET=datajoint- test
74
+ - S3_BUCKET=datajoint. test
70
75
- PYTHON_USER=dja
71
76
- JUPYTER_PASSWORD=datajoint
72
77
- DISPLAY
0 commit comments