This commit is contained in:
Administrator 2022-09-04 10:07:18 +03:00
parent 34838afbb3
commit a6b66b0791
4 changed files with 8 additions and 1 deletions

View File

@ -10,6 +10,7 @@ services:
- battleship-nginx - battleship-nginx
- sprint-nginx - sprint-nginx
- swarmpit-nginx - swarmpit-nginx
- gitlab-nginx
deploy: deploy:
mode: replicated mode: replicated
replicas: 1 replicas: 1
@ -120,4 +121,6 @@ networks:
sprint-nginx: sprint-nginx:
external: true external: true
swarmpit-nginx: swarmpit-nginx:
external: true
gitlab-nginx:
external: true external: true

View File

@ -16,6 +16,8 @@ services:
networks: networks:
- net - net
- swarmpit-nginx - swarmpit-nginx
ports:
- "888:8080"
deploy: deploy:
resources: resources:
limits: limits:

View File

@ -16,6 +16,8 @@ services:
networks: networks:
- net - net
- swarmpit-nginx - swarmpit-nginx
ports:
- "888:8080"
deploy: deploy:
resources: resources:
limits: limits:

View File

@ -26,7 +26,7 @@ http {
server_name rabbitmq.sprinthub.ru; server_name rabbitmq.sprinthub.ru;
location / { location / {
proxy_pass http://rabbitmq:15672/; proxy_pass http://rabbitmq:15671/;
} }
} }