Skip to content

Commit

Permalink
Update README.md (#391)
Browse files Browse the repository at this point in the history
* Update README.md

Fix numbering and typography

* Trigger CI
  • Loading branch information
River2000i authored Mar 24, 2023
1 parent 3d40336 commit f716e54
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,29 +56,29 @@ The following example shows how you can run Grafana and the remote HTTP renderin

1. Create a `docker-compose.yml` with the following content:

```yaml
version: '2'

services:
grafana:
image: grafana/grafana:latest
ports:
- '3000:3000'
environment:
GF_RENDERING_SERVER_URL: http://renderer:8081/render
GF_RENDERING_CALLBACK_URL: http://grafana:3000/
GF_LOG_FILTERS: rendering:debug
renderer:
image: grafana/grafana-image-renderer:latest
ports:
- 8081
```
```yaml
version: '2'

services:
grafana:
image: grafana/grafana:latest
ports:
- '3000:3000'
environment:
GF_RENDERING_SERVER_URL: http://renderer:8081/render
GF_RENDERING_CALLBACK_URL: http://grafana:3000/
GF_LOG_FILTERS: rendering:debug
renderer:
image: grafana/grafana-image-renderer:latest
ports:
- 8081
```
1. Next, run docker compose.
```bash
docker-compose up
```
```bash
docker-compose up
```

### Run as standalone Node.js application

Expand Down

0 comments on commit f716e54

Please sign in to comment.