Web service initiated

This commit is contained in:
2025-04-05 14:59:10 +03:00
parent b1c8203a33
commit fa4df11323
76 changed files with 5385 additions and 171 deletions

View File

@@ -50,6 +50,52 @@ services:
ports:
- "11222:6379"
client_frontend:
container_name: client_frontend
build:
context: .
dockerfile: WebServices/client-frontend/Dockerfile
networks:
- wag-services
ports:
- "3000:3000"
volumes:
- .WebServices/client-frontend:WebServices/client-frontend
- WebServices/client-frontend/node_modules
- WebServices/client-frontend/.next
environment:
- NODE_ENV=development
management_frontend:
container_name: management_frontend
build:
context: .
dockerfile: WebServices/management-frontend/Dockerfile
networks:
- wag-services
ports:
- "3001:3000" # Using different host port to avoid conflicts
volumes:
- .WebServices/management-frontend:WebServices/management-frontend
- WebServices/management-frontend/node_modules
- WebServices/management-frontend/.next
environment:
- NODE_ENV=development
# initializer_service:
# container_name: initializer_service
# build:
# context: .
# dockerfile: ApiServices/InitialService/Dockerfile
# networks:
# - wag-services
# env_file:
# - api_env.env
# depends_on:
# - postgres-service
# - mongo_service
# - redis_service
# template_service:
# container_name: template_service
# build:
@@ -93,7 +139,6 @@ services:
- API_PORT=8001
- API_LOG_LEVEL=info
- API_RELOAD=1
- API_ACCESS_TOKEN_TAG=eys-acs-tkn
- API_APP_NAME=evyos-auth-api-gateway
- API_TITLE=WAG API Auth Api Gateway
- API_FORGOT_LINK=https://auth_service/forgot-password
@@ -116,6 +161,7 @@ services:
# networks:
# - wag-services
networks:
wag-services: