Skip to content

Commit e9db56c

Browse files
committed
[-] fix health checking Docker installation tutorial, closes #697
1 parent 96ac129 commit e9db56c

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

docs/tutorial/docker_installation.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,9 @@ So in short, for plain Docker setups would be best to do something like:
6262
# let's create volumes for Postgres, Grafana and pgwatch marker files / SSL certificates
6363
for v in pg grafana pw3 ; do docker volume create $v ; done
6464

65-
# launch pgwatch with fully exposed Grafana and Health-check ports
66-
# and local Postgres and subnet level Web UI ports
65+
# launch pgwatch with fully exposed Grafana, Web UI, Postgres
6766
docker run -d --restart=unless-stopped --name pw3 \
68-
-p 3000:3000 -p 8081:8081 -p 127.0.0.1:5432:5432 -p 192.168.1.XYZ:8080:8080 \
67+
-p 3000:3000 -p 127.0.0.1:5432:5432 -p 192.168.1.XYZ:8080:8080 \
6968
-v pg:/var/lib/postgresql -v grafana:/var/lib/grafana -v pw3:/pgwatch/persistent-config \
7069
cybertecpostgresql/pgwatch-demo:X.Y.Z
7170
```
@@ -185,8 +184,6 @@ needed.
185184
cybertec/pgwatch image)
186185
- *8080* - Management Web UI (monitored hosts, metrics, metrics
187186
configurations)
188-
- *8081* - Gatherer healthcheck / statistics on number of gathered
189-
metrics (JSON).
190187
- *3000* - Grafana dashboarding
191188

192189
## Docker Compose

0 commit comments

Comments
 (0)