sprint
This commit is contained in:
parent
5919d1b5d5
commit
13637e42f5
@ -6,6 +6,7 @@ services:
|
||||
ports:
|
||||
- "80:80"
|
||||
networks:
|
||||
- infra-net
|
||||
- battleship-nginx
|
||||
- sprint-nginx
|
||||
deploy:
|
||||
@ -40,8 +41,9 @@ services:
|
||||
rabbitmq:
|
||||
image: rabbitmq:3.7.9-management
|
||||
ports:
|
||||
- "15672:15672"
|
||||
- "5672:5672"
|
||||
networks:
|
||||
- infra-net
|
||||
environment:
|
||||
RABBITMQ_DEFAULT_PASS: $RABBITMQ_PASSWORD_DEV
|
||||
deploy:
|
||||
@ -89,9 +91,10 @@ services:
|
||||
environment:
|
||||
MINIO_ROOT_USER: minioadmin
|
||||
MINIO_ROOT_PASSWORD: $MINIO_PASSWORD_DEV
|
||||
networks:
|
||||
- infra-net
|
||||
ports:
|
||||
- "9000:9000"
|
||||
- "9001:9001"
|
||||
deploy:
|
||||
mode: replicated
|
||||
placement:
|
||||
@ -107,6 +110,8 @@ volumes:
|
||||
driver: local
|
||||
|
||||
networks:
|
||||
infra-net:
|
||||
driver: overlay
|
||||
battleship-nginx:
|
||||
external: true
|
||||
sprint-nginx:
|
||||
|
@ -6,6 +6,7 @@ services:
|
||||
ports:
|
||||
- "80:80"
|
||||
networks:
|
||||
- infra-net
|
||||
- battleship-nginx
|
||||
- sprint-nginx
|
||||
deploy:
|
||||
@ -40,8 +41,9 @@ services:
|
||||
rabbitmq:
|
||||
image: rabbitmq:3.7.9-management
|
||||
ports:
|
||||
- "15672:15672"
|
||||
- "5672:5672"
|
||||
networks:
|
||||
- infra-net
|
||||
environment:
|
||||
RABBITMQ_DEFAULT_PASS: $RABBITMQ_PASSWORD_PROD
|
||||
deploy:
|
||||
@ -91,7 +93,8 @@ services:
|
||||
MINIO_ROOT_PASSWORD: $MINIO_PASSWORD_PROD
|
||||
ports:
|
||||
- "9000:9000"
|
||||
- "9001:9001"
|
||||
networks:
|
||||
- infra-net
|
||||
deploy:
|
||||
mode: replicated
|
||||
placement:
|
||||
@ -107,6 +110,8 @@ volumes:
|
||||
driver: local
|
||||
|
||||
networks:
|
||||
infra-net:
|
||||
driver: overlay
|
||||
battleship-nginx:
|
||||
external: true
|
||||
sprint-nginx:
|
||||
|
@ -26,7 +26,7 @@ http {
|
||||
server_name rabbitmq.develop.sprinthub.ru;
|
||||
|
||||
location / {
|
||||
proxy_pass http://dev.develop.sprinthub.ru:15672/;
|
||||
proxy_pass http://rabbtimq:15672/;
|
||||
}
|
||||
}
|
||||
|
||||
@ -35,7 +35,7 @@ http {
|
||||
server_name minio.develop.sprinthub.ru;
|
||||
|
||||
location / {
|
||||
proxy_pass http://dev.develop.sprinthub.ru:9001/;
|
||||
proxy_pass http://minio:9001/;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -34,7 +34,7 @@ http {
|
||||
server_name rabbitmq.sprinthub.ru;
|
||||
|
||||
location / {
|
||||
proxy_pass http://dev.sprinthub.ru:15672/;
|
||||
proxy_pass http://rabbitmq:15672/;
|
||||
}
|
||||
}
|
||||
|
||||
@ -43,7 +43,7 @@ http {
|
||||
server_name minio.sprinthub.ru;
|
||||
|
||||
location / {
|
||||
proxy_pass http://dev.sprinthub.ru:9001/;
|
||||
proxy_pass http://minio:9001/;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user