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 { upstream web {
server web:3000; server auth_web:3000;
} }
upstream api { upstream api {
server api:3001; server auth_api:3001;
} }
upstream app { upstream app {

View File

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