docker-compose.yml: rename auth services
This commit is contained in:
parent
c536ba630e
commit
2f1dc2030c
@ -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 {
|
||||||
|
|||||||
@ -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
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user