Skip to content
This repository was archived by the owner on Oct 11, 2023. It is now read-only.

Commit a21cdf8

Browse files
author
Damien PLENARD
committed
improve config file exemple for docker
1 parent 5895ec1 commit a21cdf8

File tree

2 files changed

+11
-9
lines changed

2 files changed

+11
-9
lines changed

README.md

+9-7
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,9 @@ docker build \
6464
--tag influxdb-relay:latest \
6565
.
6666
docker run \
67-
--volume /path/to/influxdb-relay.conf:/etc/influxdb-relay/influxdb-relay.conf
68-
--rm
67+
--volume /path/to/influxdb-relay.conf:/etc/influxdb-relay/influxdb-relay.conf \
68+
--publish 9096:9096 \
69+
--rm \
6970
influxdb-relay:latest
7071
```
7172

@@ -76,8 +77,9 @@ Docker pull our image.
7677
```sh
7778
docker pull vptech/influxdb-relay:latest
7879
docker run \
79-
--volume /path/to/influxdb-relay.conf:/etc/influxdb-relay/influxdb-relay.conf
80-
--rm
80+
--volume /path/to/influxdb-relay.conf:/etc/influxdb-relay/influxdb-relay.conf \
81+
--publish 9096:9096 \
82+
--rm \
8183
vptech/influxdb-relay:latest
8284
```
8385

@@ -106,7 +108,7 @@ You can find some configurations in [examples](examples) folder.
106108
name = "example-http"
107109

108110
# TCP address to bind to, for HTTP server.
109-
bind-addr = "127.0.0.1:9096"
111+
bind-addr = "0.0.0.0:9096"
110112

111113
# Timeout for /health route
112114
# After this time, the host may be considered down
@@ -168,7 +170,7 @@ timeout = "10s"
168170
name = "example-udp"
169171

170172
# UDP address to bind to.
171-
bind-addr = "127.0.0.1:9096"
173+
bind-addr = "0.0.0.0:9096"
172174

173175
# Socket buffer size for incoming connections.
174176
read-buffer = 0 # default
@@ -221,7 +223,7 @@ bodies will not be forwarded back to the clients.
221223
#### /health endpoint
222224

223225
This endpoint provides a quick way to check the state of all the backends.
224-
It will return a JSON object detailing the status of the backends like this :
226+
It will return a JSON object detailing the status of the backends like this :
225227

226228
```json
227229
{

examples/sample.conf

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# InfluxDB && Prometheus
44
[[http]]
55
name = "example-http-influxdb"
6-
bind-addr = "127.0.0.1:9096"
6+
bind-addr = "0.0.0.0:9096"
77

88
[[http.output]]
99
name = "local-influxdb01"
@@ -19,7 +19,7 @@ timeout = "10s"
1919

2020
[[udp]]
2121
name = "example-udp"
22-
bind-addr = "127.0.0.1:9096"
22+
bind-addr = "0.0.0.0:9096"
2323
read-buffer = 0 # default
2424

2525
[[udp.output]]

0 commit comments

Comments
 (0)