docker-compose.yml: rename auth services

This commit is contained in:
vchikalkin 2023-10-24 12:09:45 +03:00
parent c536ba630e
commit 2f1dc2030c
2 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,9 @@
upstream web {
server web:3000;
server auth_web:3000;
}
upstream api {
server api:3001;
server auth_api:3001;
}
upstream app {

View File

@ -1,7 +1,7 @@
version: '3'
services:
web:
auth_web:
build:
context: .
dockerfile: ./apps/web/Dockerfile
@ -9,7 +9,7 @@ services:
networks:
- auth_network
api:
auth_api:
build:
context: .
dockerfile: ./apps/api/Dockerfile