https://github.com/preetam/compose-postgresql-grafana
PostgreSQL + Grafana with test data running in Docker Compose. This is the repo used for the talk I gave at PostgresConf NYC 2019.
https://github.com/preetam/compose-postgresql-grafana
Last synced: 4 months ago
JSON representation
PostgreSQL + Grafana with test data running in Docker Compose. This is the repo used for the talk I gave at PostgresConf NYC 2019.
- Host: GitHub
- URL: https://github.com/preetam/compose-postgresql-grafana
- Owner: Preetam
- License: mit
- Created: 2019-03-08T00:45:19.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-09-16T02:14:21.000Z (almost 4 years ago)
- Last Synced: 2025-01-06T03:21:39.545Z (6 months ago)
- Language: Dockerfile
- Homepage:
- Size: 9.77 KB
- Stars: 11
- Watchers: 3
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# compose-postgresql-grafana
PostgreSQL + Grafana with test data running in Docker Compose.
This is the repo used for the [(PDF) Visualizing Data in PostgreSQL With Grafana](https://postgresconf.org/system/events/document/000/000/964/Visualizing_Data_in_PostgreSQL_With_Grafana.pdf) talk I gave at PostgresConf NYC 2019.

## Getting started
Run Docker Compose:
```
docker-compose up --build
```Visit http://localhost:3000/ and use the default credentials of `admin` / `admin`.
### Connect to PostgreSQL with psql
```
docker run -it --rm --link postgres:postgres postgres psql -h postgres -U postgres
```## License
MIT