mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-04-22 07:57:57 +00:00
25 lines
492 B
YAML
25 lines
492 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
|
|
# command: yarn start:frontend
|
|
ports:
|
|
- 3000:3000
|
|
telemetry-backend:
|
|
build:
|
|
dockerfile: backend.Dockerfile
|
|
context: ./
|
|
environment:
|
|
- PORT=8000
|
|
ports:
|
|
- 8000:8000
|
|
expose:
|
|
- 8000
|