forked from kimhyungsik/ax_hub_mcp_tool
52 lines
1005 B
YAML
52 lines
1005 B
YAML
name: ax_hub_mcp_tool
|
|
|
|
services:
|
|
redis:
|
|
image: redis:latest
|
|
ports:
|
|
- "6379:6379"
|
|
healthcheck:
|
|
test: ["CMD", "redis-cli", "ping"]
|
|
interval: 5s
|
|
timeout: 3s
|
|
retries: 5
|
|
|
|
|
|
|
|
was-sms:
|
|
build:
|
|
context: .
|
|
dockerfile: dap-was-sms/Dockerfile
|
|
ports:
|
|
- "8282:8082"
|
|
depends_on:
|
|
- redis
|
|
environment:
|
|
- TZ=Asia/Seoul
|
|
- SPRING_REDIS_HOST=redis
|
|
- SPRING_REDIS_PORT=6379
|
|
- SPRING_DATA_REDIS_PORT=6379
|
|
- AXHUB_SOURCE_DIR=/src
|
|
- AXHUB_TOOL_URL=http://was-sms:8082
|
|
|
|
|
|
- SPRING_PROFILES_ACTIVE=${ACTIVE_PROFILE:-local}
|
|
|
|
was-oth:
|
|
build:
|
|
context: .
|
|
dockerfile: dap-was-oth/Dockerfile
|
|
ports:
|
|
- "8284:8084"
|
|
depends_on:
|
|
- redis
|
|
environment:
|
|
- TZ=Asia/Seoul
|
|
- SPRING_REDIS_HOST=redis
|
|
- SPRING_REDIS_PORT=6379
|
|
- SPRING_DATA_REDIS_PORT=6379
|
|
- AXHUB_TOOL_URL=http://was-oth:8084
|
|
|
|
|
|
- SPRING_PROFILES_ACTIVE=${ACTIVE_PROFILE:-local}
|