mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 14:17:57 +01:00
Start docker compoose.
This commit is contained in:
parent
f046bcaebc
commit
71f77f6e79
21
docker-compose.yaml
Normal file
21
docker-compose.yaml
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
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"
|
@ -9,11 +9,11 @@
|
|||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<groupId>org.wisemapping</groupId>
|
<groupId>org.wisemapping</groupId>
|
||||||
<artifactId>wise-webapp</artifactId>
|
<artifactId>wise-api</artifactId>
|
||||||
<version>5.1.0-SNAPSHOT</version>
|
<version>5.1.0-SNAPSHOT</version>
|
||||||
|
|
||||||
<name>WiseMapping Webapp</name>
|
<name>WiseMapping API</name>
|
||||||
<url>http://www.wisemapping.org</url>
|
<url>https://www.wisemapping.org</url>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<com.wisemapping.version>5.1.0-SNAPSHOT</com.wisemapping.version>
|
<com.wisemapping.version>5.1.0-SNAPSHOT</com.wisemapping.version>
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user