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
Copy file name to clipboardexpand all lines: README.md
+5-5
Original file line number
Diff line number
Diff line change
@@ -6,13 +6,13 @@ InfluxDB image
6
6
Usage
7
7
-----
8
8
9
-
To create the image `sbiermann/influxdb`, execute the following command on rpi-influxdb folder:
9
+
To create the image `sbiermann/rpi-influxdb`, execute the following command on rpi-influxdb folder:
10
10
11
-
docker build -t sbiermann/influxdb .
11
+
docker build -t sbiermann/rpi-influxdb .
12
12
13
13
You can now push new image to the registry:
14
14
15
-
docker push sbiermann/influxdb
15
+
docker push sbiermann/rpi-influxdb
16
16
17
17
Tags
18
18
----
@@ -25,7 +25,7 @@ Running your InfluxDB image
25
25
26
26
Start your image binding the external ports `8083` and `8086` in all interfaces to your container. Ports `8090` and `8099` are only used for clustering and should not be exposed to the internet.
27
27
28
-
docker run -d -p 8083:8083 -p 8086:8086 sbiermann/influxdb
28
+
docker run -d -p 8083:8083 -p 8086:8086 sbiermann/rpi-influxdb
29
29
30
30
31
31
Configuring your InfluxDB
@@ -39,4 +39,4 @@ Initially create Database
39
39
-------------------------
40
40
Use `-e PRE_CREATE_DB="db1;db2;db3"` to create database named "db1", "db2", and "db3" on the first time the container starts automatically. Each database name is separated by `;`. For example:
41
41
42
-
```docker run -d -p 8083:8083 -p 8084:8084 -e PRE_CREATE_DB="db1;db2;db3" sbiermann/influxdb:latest```
42
+
```docker run -d -p 8083:8083 -p 8084:8084 -e PRE_CREATE_DB="db1;db2;db3" sbiermann/rpi-influxdb:latest```
0 commit comments