26 lines
552 B
YAML
26 lines
552 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
gateway:
|
|
image: yudao-gateway:${APP_VERSION}
|
|
container_name: yudao-gatewa
|
|
ports:
|
|
- "48080:48080"
|
|
environment:
|
|
SPRING_PROFILES_ACTIVE: dev
|
|
|
|
system:
|
|
image: yudao-module-system:${APP_VERSION}
|
|
container_name: yudao-module-system
|
|
ports:
|
|
- "48081:48081"
|
|
environment:
|
|
SPRING_PROFILES_ACTIVE: dev
|
|
|
|
infra:
|
|
image: yudao-module-infra:${APP_VERSION}
|
|
container_name: yudao-module-infra
|
|
ports:
|
|
- "48082:48082"
|
|
environment:
|
|
SPRING_PROFILES_ACTIVE: dev |