mirror of
https://github.com/wisemapping/wisemapping-open-source.git
synced 2025-04-13 10:34:28 +08:00
21 lines
453 B
YAML
21 lines
453 B
YAML
|
version: '3'
|
||
|
services:
|
||
|
wise-api:
|
||
|
build:
|
||
|
context: ./wise-api
|
||
|
dockerfile: Dockerfile
|
||
|
ports:
|
||
|
- "8080:8080"
|
||
|
environment:
|
||
|
SPRING_DATASOURCE_URL: jdbc:mysql://mysql:3306/product
|
||
|
SPRING_DATASOURCE_USERNAME: product_user
|
||
|
SPRING_DATASOURCE_PASSWORD: product_user_password
|
||
|
|
||
|
react-app:
|
||
|
build:
|
||
|
context: ./wise-ui
|
||
|
dockerfile: Dockerfile
|
||
|
depends_on:
|
||
|
- wise-api
|
||
|
ports:
|
||
|
- "3000:80"
|