From 44cf092b6a3f683901000607d592ca04db6a1ff6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ha=20=C4=90ANG?= Date: Mon, 27 May 2019 11:33:18 +0700 Subject: [PATCH] cmd/puppeth: integrate new nexty stats into puppeth (#204) --- cmd/puppeth/module_ethstats.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/puppeth/module_ethstats.go b/cmd/puppeth/module_ethstats.go index 58ecb83951e0..4af92c1f95b9 100644 --- a/cmd/puppeth/module_ethstats.go +++ b/cmd/puppeth/module_ethstats.go @@ -31,7 +31,7 @@ import ( // ethstatsDockerfile is the Dockerfile required to build an ethstats backend // and associated monitoring site. var ethstatsDockerfile = ` -FROM puppeth/ethstats:latest +FROM nextyio/nextats:latest RUN echo 'module.exports = {trusted: [{{.Trusted}}], banned: [{{.Banned}}], reserved: ["yournode"]};' > lib/utils/config.js ` @@ -43,7 +43,7 @@ version: '2' services: ethstats: build: . - image: {{.Network}}/ethstats + image: {{.Network}}/nextats container_name: {{.Network}}_ethstats_1{{if not .VHost}} ports: - "{{.Port}}:3000"{{end}}