minio
This commit is contained in:
parent
67fd65b06f
commit
f0cf8fc093
@ -76,3 +76,20 @@ services:
|
|||||||
update_config:
|
update_config:
|
||||||
parallelism: 1
|
parallelism: 1
|
||||||
order: start-first
|
order: start-first
|
||||||
|
|
||||||
|
minio:
|
||||||
|
image: bitnami/minio
|
||||||
|
volumes:
|
||||||
|
- /sprint-data/minio:/data
|
||||||
|
environment:
|
||||||
|
MINIO_ROOT_USER: minioadmin
|
||||||
|
MINIO_ROOT_PASSWORD: $MINIO_PASSWORD_DEV
|
||||||
|
deploy:
|
||||||
|
mode: replicated
|
||||||
|
placement:
|
||||||
|
constraints: [node.role == manager]
|
||||||
|
restart_policy:
|
||||||
|
condition: any
|
||||||
|
update_config:
|
||||||
|
parallelism: 1
|
||||||
|
order: start-first
|
@ -76,3 +76,20 @@ services:
|
|||||||
update_config:
|
update_config:
|
||||||
parallelism: 1
|
parallelism: 1
|
||||||
order: start-first
|
order: start-first
|
||||||
|
|
||||||
|
minio:
|
||||||
|
image: bitnami/minio
|
||||||
|
volumes:
|
||||||
|
- /sprint-data/minio:/data
|
||||||
|
environment:
|
||||||
|
MINIO_ROOT_USER: minioadmin
|
||||||
|
MINIO_ROOT_PASSWORD: $MINIO_PASSWORD_PROD
|
||||||
|
deploy:
|
||||||
|
mode: replicated
|
||||||
|
placement:
|
||||||
|
constraints: [node.role == manager]
|
||||||
|
restart_policy:
|
||||||
|
condition: any
|
||||||
|
update_config:
|
||||||
|
parallelism: 1
|
||||||
|
order: start-first
|
@ -28,4 +28,13 @@ http {
|
|||||||
proxy_pass http://dev.develop.sprinthub.ru:15672/;
|
proxy_pass http://dev.develop.sprinthub.ru:15672/;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name minio.develop.sprinthub.ru;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://dev.develop.sprinthub.ru:9001/;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
@ -37,4 +37,13 @@ http {
|
|||||||
proxy_pass http://dev.sprinthub.ru:15672/;
|
proxy_pass http://dev.sprinthub.ru:15672/;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name minio.sprinthub.ru;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://dev.sprinthub.ru:9001/;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user