File tree Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Expand file tree Collapse file tree 2 files changed +28
-0
lines changed Original file line number Diff line number Diff line change @@ -379,6 +379,21 @@ services:
379379 environment :
380380 - GF_INSTALL_PLUGINS=grafana-clickhouse-datasource
381381
382+ frontend-hub :
383+ image : node:22-bullseye
384+ restart : unless-stopped
385+ working_dir : /app/frontend/apps/hub
386+ command : /bin/bash /etc/frontend-hub/entrypoint.sh
387+ environment :
388+ - NODE_ENV=development
389+ ports :
390+ - " 5080:5080"
391+ volumes :
392+ - ../..:/app:rw
393+ - ./frontend-hub/entrypoint.sh:/etc/frontend-hub/entrypoint.sh:ro
394+ networks :
395+ - rivet-network
396+
382397 otel-collector :
383398 image : otel/opentelemetry-collector-contrib:latest
384399 restart : unless-stopped
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ set -e
3+
4+ npm i -g corepack
5+ corepack enable
6+
7+ # Install packages
8+ cd /app
9+ yarn install
10+
11+ # Start dev server
12+ cd /app/frontend/apps/hub
13+ yarn dev --host 0.0.0.0 --port 5080
You can’t perform that action at this time.
0 commit comments