wisemapping-open-source/docker-compose.yml

21 lines
378 B
YAML
Raw Permalink Normal View History

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