You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[pgHero](https://github.com/ankane/pghero) is a PostgreSQL monitoring tool that provides insights into database performance and queries through a web UI.
79
+
80
+
### Starting pgHero with Docker Compose
81
+
82
+
To start the pgHero service, ensure Docker Compose is set up and run:
83
+
84
+
```sh
85
+
docker-compose up -d pghero
86
+
```
87
+
88
+
### Accessing the pgHero Web UI
89
+
90
+
Once running, access the pgHero dashboard at: [http://localhost/pghero](http://localhost/pghero) (replace "localhost" with your server's address as needed).
91
+
92
+
The `/pghero` route is proxied by nginx to the pgHero service, so you do not need to specify a port.
93
+
94
+
### Required Environment Variables
95
+
96
+
Set the following environment variables (typically in your `.env` file):
97
+
98
+
-`PGHERO_DATABASE_URL` — The connection string for your PostgreSQL database (e.g., `postgres://postgres:password@store-pgsql:5432/neurostore`).
99
+
100
+
Refer to the `docker-compose.yml` for additional configuration options.
0 commit comments