docker: update env variables

This commit is contained in:
Chika 2022-11-29 21:16:23 +03:00
parent 52af419254
commit 1954dc0a86
2 changed files with 1 additions and 5 deletions

2
.env
View File

@ -1,6 +1,4 @@
NETWORK_NAME=
WEB_APP_NAME=
API_NAME=
WEB_APP_BASE_PATH=
WEB_APP_TITLE=

View File

@ -2,7 +2,6 @@ version: '3'
services:
web:
container_name: ${WEB_APP_NAME}
build:
context: .
dockerfile: ./apps/web/Dockerfile
@ -14,7 +13,6 @@ services:
networks:
- auth_network
api:
container_name: ${API_NAME}
build:
context: .
dockerfile: ./apps/api/Dockerfile
@ -46,7 +44,7 @@ services:
restart: always
networks:
- auth_network
- ${NETWORK_NAME}
networks:
auth_network:
name: ${NETWORK_NAME}