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/integrations.md
+24-24Lines changed: 24 additions & 24 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@ Using BunkerWeb as a [Docker](https://www.docker.com/) container is a quick and
12
12
We provide ready-to-use prebuilt images for x64, x86 armv8 and armv7 architectures on [Docker Hub](https://hub.docker.com/r/bunkerity/bunkerweb) :
13
13
14
14
```shell
15
-
docker pull bunkerity/bunkerweb:1.4.6
15
+
docker pull bunkerity/bunkerweb:1.4.7
16
16
```
17
17
18
18
Alternatively, you can build the Docker images directly from the [source](https://github.com/bunkerity/bunkerweb) (and get a coffee ☕ because it may take a long time depending on your hardware) :
@@ -39,7 +39,7 @@ docker run \
39
39
-e MY_SETTING=value \
40
40
-e "MY_OTHER_SETTING=value with spaces" \
41
41
...
42
-
bunkerity/bunkerweb:1.4.6
42
+
bunkerity/bunkerweb:1.4.7
43
43
```
44
44
45
45
Here is the docker-compose equivalent :
@@ -48,7 +48,7 @@ Here is the docker-compose equivalent :
48
48
...
49
49
services:
50
50
mybunker:
51
-
image: bunkerity/bunkerweb:1.4.6
51
+
image: bunkerity/bunkerweb:1.4.7
52
52
environment:
53
53
- MY_SETTING=value
54
54
```
@@ -73,7 +73,7 @@ docker run \
73
73
...
74
74
-v bw_data:/data \
75
75
...
76
-
bunkerity/bunkerweb:1.4.6
76
+
bunkerity/bunkerweb:1.4.7
77
77
```
78
78
79
79
Here is the docker-compose equivalent :
@@ -82,7 +82,7 @@ Here is the docker-compose equivalent :
82
82
...
83
83
services:
84
84
mybunker:
85
-
image: bunkerity/bunkerweb:1.4.6
85
+
image: bunkerity/bunkerweb:1.4.7
86
86
volumes:
87
87
- bw_data:/data
88
88
...
@@ -152,7 +152,7 @@ docker run \
152
152
...
153
153
--network mynetwork \
154
154
...
155
-
bunkerity/bunkerweb:1.4.6
155
+
bunkerity/bunkerweb:1.4.7
156
156
```
157
157
158
158
You will also need to do the same with your web application(s). Please note that the other containers are accessible using their name as the hostname.
@@ -163,7 +163,7 @@ Here is the docker-compose equivalent :
163
163
...
164
164
services:
165
165
mybunker:
166
-
image: bunkerity/bunkerweb:1.4.6
166
+
image: bunkerity/bunkerweb:1.4.7
167
167
networks:
168
168
- bw-net
169
169
...
@@ -218,7 +218,7 @@ docker run \
218
218
-e SERVER_NAME= \
219
219
-e "API_WHITELIST_IP=127.0.0.0/8 10.20.30.0/24" \
220
220
-l bunkerweb.AUTOCONF \
221
-
bunkerity/bunkerweb:1.4.6 && \
221
+
bunkerity/bunkerweb:1.4.7 && \
222
222
223
223
docker network connect bw-services mybunker
224
224
```
@@ -235,7 +235,7 @@ docker run \
235
235
--network bw-autoconf \
236
236
-v bw-data:/data \
237
237
-v /var/run/docker.sock:/var/run/docker.sock:ro \
238
-
bunkerity/bunkerweb-autoconf:1.4.6
238
+
bunkerity/bunkerweb-autoconf:1.4.7
239
239
```
240
240
241
241
Here is the docker-compose equivalent for the BunkerWeb autoconf stack :
0 commit comments