updated left menu and page template
This commit is contained in:
@@ -51,22 +51,82 @@ services:
|
||||
- REDIS_DB=0
|
||||
ports:
|
||||
- "11222:6379"
|
||||
mem_limit: 512M
|
||||
cpus: 0.5
|
||||
|
||||
# client_frontend:
|
||||
# container_name: client_frontend
|
||||
# build:
|
||||
# context: .
|
||||
# dockerfile: WebServices/client-frontend/Dockerfile
|
||||
# networks:
|
||||
# - wag-services
|
||||
# ports:
|
||||
# - "3000:3000"
|
||||
# # volumes:
|
||||
# # - client-frontend:/WebServices/client-frontend
|
||||
# environment:
|
||||
# - NODE_ENV=development
|
||||
# mem_limit: 4096M
|
||||
# cpus: 2.0
|
||||
client_frontend:
|
||||
container_name: client_frontend
|
||||
build:
|
||||
context: .
|
||||
dockerfile: WebServices/client-frontend/Dockerfile
|
||||
networks:
|
||||
- wag-services
|
||||
ports:
|
||||
- "3000:3000"
|
||||
# volumes:
|
||||
# - client-frontend:/WebServices/client-frontend
|
||||
environment:
|
||||
- NODE_ENV=development
|
||||
mem_limit: 4096M
|
||||
cpus: 1.5
|
||||
|
||||
identity_service:
|
||||
container_name: identity_service
|
||||
build:
|
||||
context: .
|
||||
dockerfile: ApiServices/IdentityService/Dockerfile
|
||||
networks:
|
||||
- wag-services
|
||||
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"
|
||||
depends_on:
|
||||
- postgres-service
|
||||
- mongo_service
|
||||
- redis_service
|
||||
mem_limit: 512M
|
||||
cpus: 0.5
|
||||
|
||||
auth_service:
|
||||
container_name: auth_service
|
||||
build:
|
||||
context: .
|
||||
dockerfile: ApiServices/AuthService/Dockerfile
|
||||
networks:
|
||||
- wag-services
|
||||
env_file:
|
||||
- api_env.env
|
||||
environment:
|
||||
- API_PATH=app:app
|
||||
- API_HOST=0.0.0.0
|
||||
- API_PORT=8001
|
||||
- API_LOG_LEVEL=info
|
||||
- API_RELOAD=1
|
||||
- API_APP_NAME=evyos-auth-api-gateway
|
||||
- API_TITLE=WAG API Auth Api Gateway
|
||||
- API_FORGOT_LINK=https://auth_service/forgot-password
|
||||
- API_DESCRIPTION=This api is serves as web auth api gateway only to evyos web services.
|
||||
- API_APP_URL=https://auth_service
|
||||
ports:
|
||||
- "8001:8001"
|
||||
depends_on:
|
||||
- postgres-service
|
||||
- mongo_service
|
||||
- redis_service
|
||||
mem_limit: 512M
|
||||
cpus: 0.5
|
||||
|
||||
# management_frontend:
|
||||
# container_name: management_frontend
|
||||
@@ -137,74 +197,6 @@ services:
|
||||
# - mongo_service
|
||||
# - redis_service
|
||||
|
||||
# dealer_service:
|
||||
# container_name: dealer_service
|
||||
# build:
|
||||
# context: .
|
||||
# dockerfile: ApiServices/DealerService/Dockerfile
|
||||
# networks:
|
||||
# - wag-services
|
||||
# env_file:
|
||||
# - api_env.env
|
||||
# depends_on:
|
||||
# - postgres-service
|
||||
# - mongo_service
|
||||
# - redis_service
|
||||
|
||||
identity_service:
|
||||
container_name: identity_service
|
||||
build:
|
||||
context: .
|
||||
dockerfile: ApiServices/IdentityService/Dockerfile
|
||||
networks:
|
||||
- wag-services
|
||||
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"
|
||||
depends_on:
|
||||
- postgres-service
|
||||
- mongo_service
|
||||
- redis_service
|
||||
|
||||
auth_service:
|
||||
container_name: auth_service
|
||||
build:
|
||||
context: .
|
||||
dockerfile: ApiServices/AuthService/Dockerfile
|
||||
networks:
|
||||
- wag-services
|
||||
env_file:
|
||||
- api_env.env
|
||||
environment:
|
||||
- API_PATH=app:app
|
||||
- API_HOST=0.0.0.0
|
||||
- API_PORT=8001
|
||||
- API_LOG_LEVEL=info
|
||||
- API_RELOAD=1
|
||||
- API_APP_NAME=evyos-auth-api-gateway
|
||||
- API_TITLE=WAG API Auth Api Gateway
|
||||
- API_FORGOT_LINK=https://auth_service/forgot-password
|
||||
- API_DESCRIPTION=This api is serves as web auth api gateway only to evyos web services.
|
||||
- API_APP_URL=https://auth_service
|
||||
ports:
|
||||
- "8001:8001"
|
||||
depends_on:
|
||||
- postgres-service
|
||||
- mongo_service
|
||||
- redis_service
|
||||
|
||||
# test_server:
|
||||
# container_name: test_server
|
||||
# build:
|
||||
|
||||
Reference in New Issue
Block a user