updated pagination commit to carry

This commit is contained in:
2025-04-28 13:19:01 +03:00
parent ac344773c5
commit 2d418644bb
5 changed files with 228 additions and 179 deletions

View File

@@ -1,17 +1,17 @@
services:
client_frontend:
container_name: client_frontend
build:
context: .
dockerfile: WebServices/client-frontend/Dockerfile
networks:
- wag-services
ports:
- "3000:3000"
environment:
- NODE_ENV=development
cpus: 1
mem_limit: 2048m
# client_frontend:
# container_name: client_frontend
# build:
# context: .
# dockerfile: WebServices/client-frontend/Dockerfile
# networks:
# - wag-services
# ports:
# - "3000:3000"
# environment:
# - NODE_ENV=development
# cpus: 1
# mem_limit: 2048m
# volumes:
# - client-frontend:/WebServices/client-frontend
@@ -26,7 +26,7 @@ services:
- "3001:3001"
environment:
- NODE_ENV=development
cpus: 1
cpus: 2
mem_limit: 2048m
auth_service:
@@ -56,59 +56,59 @@ services:
mem_limit: 512m
cpus: 0.5
identity_service:
container_name: identity_service
build:
context: .
dockerfile: ApiServices/IdentityService/Dockerfile
networks:
- wag-services
depends_on:
- initializer_service
env_file:
- api_env.env
environment:
- API_PATH=app:app
- API_HOST=0.0.0.0
- API_PORT=8002
- API_LOG_LEVEL=info
- API_RELOAD=1
- API_APP_NAME=evyos-identity-api-gateway
- API_TITLE=WAG API Identity Api Gateway
- API_FORGOT_LINK=https://identity_service/forgot-password
- API_DESCRIPTION=This api is serves as web identity api gateway only to evyos web services.
- API_APP_URL=https://identity_service
ports:
- "8002:8002"
mem_limit: 512m
cpus: 0.5
# identity_service:
# container_name: identity_service
# build:
# context: .
# dockerfile: ApiServices/IdentityService/Dockerfile
# networks:
# - wag-services
# depends_on:
# - initializer_service
# env_file:
# - api_env.env
# environment:
# - API_PATH=app:app
# - API_HOST=0.0.0.0
# - API_PORT=8002
# - API_LOG_LEVEL=info
# - API_RELOAD=1
# - API_APP_NAME=evyos-identity-api-gateway
# - API_TITLE=WAG API Identity Api Gateway
# - API_FORGOT_LINK=https://identity_service/forgot-password
# - API_DESCRIPTION=This api is serves as web identity api gateway only to evyos web services.
# - API_APP_URL=https://identity_service
# ports:
# - "8002:8002"
# mem_limit: 512m
# cpus: 0.5
building_service:
container_name: building_service
build:
context: .
dockerfile: ApiServices/BuildingService/Dockerfile
networks:
- wag-services
env_file:
- api_env.env
depends_on:
- initializer_service
environment:
- API_PATH=app:app
- API_HOST=0.0.0.0
- API_PORT=8003
- API_LOG_LEVEL=info
- API_RELOAD=1
- API_APP_NAME=evyos-building-api-gateway
- API_TITLE=WAG API Building Api Gateway
- API_FORGOT_LINK=https://building_service/forgot-password
- API_DESCRIPTION=This api is serves as web building api gateway only to evyos web services.
- API_APP_URL=https://building_service
ports:
- "8003:8003"
mem_limit: 512m
cpus: 0.5
# building_service:
# container_name: building_service
# build:
# context: .
# dockerfile: ApiServices/BuildingService/Dockerfile
# networks:
# - wag-services
# env_file:
# - api_env.env
# depends_on:
# - initializer_service
# environment:
# - API_PATH=app:app
# - API_HOST=0.0.0.0
# - API_PORT=8003
# - API_LOG_LEVEL=info
# - API_RELOAD=1
# - API_APP_NAME=evyos-building-api-gateway
# - API_TITLE=WAG API Building Api Gateway
# - API_FORGOT_LINK=https://building_service/forgot-password
# - API_DESCRIPTION=This api is serves as web building api gateway only to evyos web services.
# - API_APP_URL=https://building_service
# ports:
# - "8003:8003"
# mem_limit: 512m
# cpus: 0.5
management_service:
container_name: management_service
@@ -151,17 +151,17 @@ services:
mem_limit: 512m
cpus: 0.5
dealer_service:
container_name: dealer_service
build:
context: .
dockerfile: ApiServices/DealerService/Dockerfile
networks:
- wag-services
env_file:
- api_env.env
mem_limit: 512m
cpus: 0.5
# dealer_service:
# container_name: dealer_service
# build:
# context: .
# dockerfile: ApiServices/DealerService/Dockerfile
# networks:
# - wag-services
# env_file:
# - api_env.env
# mem_limit: 512m
# cpus: 0.5
networks:
wag-services: