mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-22 06:07:57 +01:00
21 lines
378 B
YAML
21 lines
378 B
YAML
version: '3'
|
|
|
|
services:
|
|
wise-api:
|
|
container_name: wise-api
|
|
image: wise-api:latest
|
|
build:
|
|
context: ./wise-api
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- "8080:8080"
|
|
wise-ui:
|
|
container_name: wise-ui
|
|
image: wise-ui:latest
|
|
build:
|
|
context: ./wise-ui
|
|
dockerfile: Dockerfile
|
|
depends_on:
|
|
- wise-api
|
|
ports:
|
|
- "80:80" |