mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-04-22 21:58:04 +00:00
24 lines
455 B
YAML
24 lines
455 B
YAML
version: "3"
|
|
|
|
services:
|
|
telemetry-frontend:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: ./frontend/
|
|
# Copy in changes to the ui, so no need to rebuild the images.
|
|
volumes:
|
|
- /app/node_modules
|
|
- ./packages:/app/packages
|
|
ports:
|
|
- 3000:80
|
|
telemetry-backend:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: ./backend/
|
|
environment:
|
|
- PORT=8000
|
|
ports:
|
|
- 8000:8000
|
|
expose:
|
|
- 8000
|