Skip to content

Instantly share code, notes, and snippets.

@chevdor
Last active May 27, 2019 19:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chevdor/493a38e0216ce7a9559837c99e048802 to your computer and use it in GitHub Desktop.
Save chevdor/493a38e0216ce7a9559837c99e048802 to your computer and use it in GitHub Desktop.
Polkadot telemetry one liner

Usage

Copy/paste that in your terminal

wget https://gist.githubusercontent.com/chevdor/493a38e0216ce7a9559837c99e048802/raw/806a04c742f8b71f0929fe62e226b7aca817230a/docker-compose.yml -O /tmp/telemetry.yml && docker-compose -f /tmp/telemetry.yml up --force-recreate
version: "3"
services:
telemetry-frontend:
image: chevdor/polkadot-telemetry
volumes:
- /app/node_modules
- ./packages:/app/packages
command: yarn start:frontend
ports:
- 3000:3000
telemetry-backend:
image: chevdor/polkadot-telemetry
command: yarn start:backend
environment:
- TELEMETRY_SERVER=1024
- FEED_SERVER=8080
ports:
- 8080:8080
- 1024:1024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment