mirror of
https://github.com/pezkuwichain/pezkuwi-telemetry.git
synced 2026-04-22 05:38:00 +00:00
238d529eae
* move the env-config script to a sub folder * fix doc * fix ports and ref to the official image * add hardening to the docker-compose examples
49 lines
1009 B
YAML
49 lines
1009 B
YAML
version: "3"
|
|
|
|
networks:
|
|
default:
|
|
# Give the default network created below a sensible name:
|
|
name: substrate-telemetry
|
|
|
|
services:
|
|
telemetry-frontend:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: ./frontend/
|
|
read_only: true
|
|
tmpfs:
|
|
- /var/cache/nginx:uid=101,gid=101
|
|
- /var/run:uid=101,gid=101
|
|
- /app/tmp:uid=101,gid=101
|
|
environment:
|
|
SUBSTRATE_TELEMETRY_URL: ws://localhost:8000/feed
|
|
ports:
|
|
- 3000:8000
|
|
expose:
|
|
- 3000
|
|
telemetry-backend-shard:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: ./backend/
|
|
command: [
|
|
'telemetry_shard',
|
|
'--listen', '0.0.0.0:8001',
|
|
'--core', 'http://telemetry-backend-core:8000/shard_submit'
|
|
]
|
|
ports:
|
|
- 8001:8001
|
|
expose:
|
|
- 8001
|
|
telemetry-backend-core:
|
|
build:
|
|
dockerfile: Dockerfile
|
|
context: ./backend/
|
|
command: [
|
|
'telemetry_core',
|
|
'--listen', '0.0.0.0:8000'
|
|
]
|
|
ports:
|
|
- 8000:8000
|
|
expose:
|
|
- 8000
|