2024-02-04 15:10:32 +08:00
|
|
|
version: '3'
|
2024-02-05 00:45:00 +08:00
|
|
|
|
2024-02-04 15:10:32 +08:00
|
|
|
services:
|
|
|
|
wise-api:
|
2024-02-05 00:45:00 +08:00
|
|
|
container_name: wise-api
|
2024-04-06 17:47:01 +08:00
|
|
|
hostname: wise-api
|
2024-02-05 00:45:00 +08:00
|
|
|
image: wise-api:latest
|
2024-02-04 15:10:32 +08:00
|
|
|
build:
|
|
|
|
context: ./wise-api
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
ports:
|
|
|
|
- "8080:8080"
|
2024-02-05 00:45:00 +08:00
|
|
|
wise-ui:
|
|
|
|
container_name: wise-ui
|
|
|
|
image: wise-ui:latest
|
2024-02-04 15:10:32 +08:00
|
|
|
build:
|
|
|
|
context: ./wise-ui
|
|
|
|
dockerfile: Dockerfile
|
|
|
|
depends_on:
|
|
|
|
- wise-api
|
|
|
|
ports:
|
2024-02-04 15:22:38 +08:00
|
|
|
- "80:80"
|