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: docs/Containers/Blynk_server.md
+12-12Lines changed: 12 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -72,14 +72,14 @@ When you select Blynk Server in the IOTstack menu, the *template service definit
72
72
73
73
On a first install of IOTstack, you run the menu, choose your containers, and are told to do this:
74
74
75
-
```bash
75
+
```console
76
76
$ cd~/IOTstack
77
77
$ docker-compose up -d
78
78
```
79
79
80
80
`docker-compose` reads the *Compose* file. When it arrives at the `blynk_server` fragment, it finds:
81
81
82
-
```
82
+
```yaml
83
83
blynk_server:
84
84
build:
85
85
context: ./.templates/blynk_server/.
@@ -99,7 +99,7 @@ The `BLYNK_SERVER_VERSION` argument is passed into the build process. This impli
99
99
100
100
The *Dockerfile* begins with:
101
101
102
-
```
102
+
```Dockerfile
103
103
FROM ubuntu
104
104
```
105
105
@@ -117,7 +117,7 @@ The ***local image*** is instantiated to become your running container.
117
117
118
118
When you run the `docker images` command after Blynk Server has been built, you *may* see two rows that are relevant:
119
119
120
-
```bash
120
+
```console
121
121
$ docker images
122
122
REPOSITORY TAG IMAGE ID CREATED SIZE
123
123
iotstack_blynk_server latest 3cd6445f8a7e 3 hours ago 652MB
@@ -135,7 +135,7 @@ You *may* see the same pattern in *Portainer*, which reports the ***base image**
135
135
136
136
You can inspect Blynk Server's log by:
137
137
138
-
```
138
+
```console
139
139
$ docker logs blynk_server
140
140
```
141
141
@@ -153,7 +153,7 @@ The first time you launch the `blynk_server` container, the following structure
153
153
154
154
The two `.properties` files can be used to alter Blynk Server's configuration. When you make change to these files, you activate then by restarting the container:
* You can also remove individual configuration files and then trigger self-healing. For example, if you decide to edit `server.properties` and make a mess, you can restore the original default version like this:
0 commit comments