diff --git a/README.md b/README.md index 2ab0a2a84..c77a22238 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@
-
+
diff --git a/VERSION b/VERSION
index 13175fdc4..c9929e36a 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.4.1
\ No newline at end of file
+1.4.2
\ No newline at end of file
diff --git a/docs/integrations.md b/docs/integrations.md
index 53e6e7b06..762778d65 100644
--- a/docs/integrations.md
+++ b/docs/integrations.md
@@ -12,7 +12,7 @@ Using BunkerWeb as a [Docker](https://www.docker.com/) container is a quick and
We provide ready to use prebuilt images for x64, x86 armv8 and armv7 architectures on [Docker Hub](https://hub.docker.com/r/bunkerity/bunkerweb) :
```shell
-docker pull bunkerity/bunkerweb:1.4.1
+docker pull bunkerity/bunkerweb:1.4.2
```
Alternatively, you can build the Docker images directly from the [source](https://github.com/bunkerity/bunkerweb) (and take a coffee ☕ because it may be long depending on your hardware) :
@@ -39,7 +39,7 @@ docker run \
-e MY_SETTING=value \
-e "MY_OTHER_SETTING=value with spaces" \
...
- bunkerity/bunkerweb:1.4.1
+ bunkerity/bunkerweb:1.4.2
```
Here is the docker-compose equivalent :
@@ -48,7 +48,7 @@ Here is the docker-compose equivalent :
...
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
environment:
- MY_SETTING=value
```
@@ -73,7 +73,7 @@ docker run \
...
-v "${PWD}/bw-data:/data" \
...
- bunkerity/bunkerweb:1.4.1
+ bunkerity/bunkerweb:1.4.2
```
Here is the docker-compose equivalent :
@@ -82,7 +82,7 @@ Here is the docker-compose equivalent :
...
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
volumes:
- bw-data:/data
...
@@ -109,7 +109,7 @@ docker run \
...
-v ./bw-data:/data \
...
- bunkerity/bunkerweb:1.4.1
+ bunkerity/bunkerweb:1.4.2
```
Here is the docker-compose equivalent :
@@ -119,7 +119,7 @@ Here is the docker-compose equivalent :
...
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
volumes:
- ./bw-data:/data
```
@@ -141,7 +141,7 @@ docker run \
...
--network mynetwork \
...
- bunkerity/bunkerweb:1.4.1
+ bunkerity/bunkerweb:1.4.2
```
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.
@@ -152,7 +152,7 @@ Here is the docker-compose equivalent :
...
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
networks:
- bw-net
...
@@ -207,7 +207,7 @@ docker run \
-e SERVER_NAME= \
-e "API_WHITELIST_IP=127.0.0.0/8 10.20.30.0/24" \
-l bunkerweb.AUTOCONF \
- bunkerity/bunkerweb:1.4.1 && \
+ bunkerity/bunkerweb:1.4.2 && \
docker network connect bw-services mybunker
```
@@ -221,7 +221,7 @@ docker run \
--network bw-autoconf \
-v bw-data:/data \
-v /var/run/docker.sock:/var/run/docker.sock:ro \
- bunkerity/bunkerweb-autoconf:1.4.1
+ bunkerity/bunkerweb-autoconf:1.4.2
```
Here is the docker-compose equivalent for the BunkerWeb autoconf stack :
@@ -232,7 +232,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
@@ -248,7 +248,7 @@ services:
- bw-services
myautoconf:
- image: bunkerity/bunkerweb-autoconf:1.4.1
+ image: bunkerity/bunkerweb-autoconf:1.4.2
volumes:
- bw-data:/data
- /var/run/docker.sock:/var/run/docker.sock:ro
@@ -350,7 +350,7 @@ docker service create \
-e MULTISITE=yes \
-e "API_WHITELIST_IP=127.0.0.0/8 10.20.30.0/24" \
-l bunkerweb.AUTOCONF \
- bunkerity/bunkerweb:1.4.1
+ bunkerity/bunkerweb:1.4.2
```
And the autoconf one :
@@ -364,7 +364,7 @@ docker service \
--mount type=bind,source=/var/run/docker.sock,destination=/var/run/docker.sock,ro \
--mount type=volume,source=bw-data,destination=/data \
-e SWARM_MODE=yes \
- bunkerity/bunkerweb-autoconf:1.4.1
+ bunkerity/bunkerweb-autoconf:1.4.2
```
Here is the docker-compose equivalent (using `docker stack deploy`) :
@@ -375,7 +375,7 @@ version: '3.5'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- published: 80
target: 8080
@@ -402,7 +402,7 @@ services:
- "bunkerweb.AUTOCONF"
myautoconf:
- image: bunkerity/bunkerweb-autoconf:1.4.1
+ image: bunkerity/bunkerweb-autoconf:1.4.2
environment:
- SWARM_MODE=yes
volumes:
@@ -692,11 +692,11 @@ Repositories of Linux packages for BunkerWeb are available on [PackageCloud](htt
sudo apt install -y nginx=1.20.2-1~bullseye
```
- And finally install BunkerWeb 1.4.1 :
+ And finally install BunkerWeb 1.4.2 :
```shell
curl -s https://packagecloud.io/install/repositories/bunkerity/bunkerweb/script.deb.sh | sudo bash && \
sudo apt update && \
- sudo apt install -y bunkerweb=1.4.1
+ sudo apt install -y bunkerweb=1.4.2
```
To prevent upgrading NGINX and/or BunkerWeb packages when executing `apt upgrade`, you can use the following command :
@@ -722,11 +722,11 @@ Repositories of Linux packages for BunkerWeb are available on [PackageCloud](htt
sudo apt install -y nginx=1.20.2-1~jammy
```
- And finally install BunkerWeb 1.4.1 :
+ And finally install BunkerWeb 1.4.2 :
```shell
curl -s https://packagecloud.io/install/repositories/bunkerity/bunkerweb/script.deb.sh | sudo bash && \
sudo apt update && \
- sudo apt install -y bunkerweb=1.4.1
+ sudo apt install -y bunkerweb=1.4.2
```
To prevent upgrading NGINX and/or BunkerWeb packages when executing `apt upgrade`, you can use the following command :
@@ -744,7 +744,7 @@ Repositories of Linux packages for BunkerWeb are available on [PackageCloud](htt
```shell
curl -s https://packagecloud.io/install/repositories/bunkerity/bunkerweb/script.rpm.sh | sudo bash && \
sudo dnf check-update && \
- sudo dnf install -y bunkerweb-1.4.1
+ sudo dnf install -y bunkerweb-1.4.2
```
To prevent upgrading NGINX and/or BunkerWeb packages when executing `dnf upgrade`, you can use the following command :
@@ -771,12 +771,12 @@ Repositories of Linux packages for BunkerWeb are available on [PackageCloud](htt
sudo dnf install nginx-1.20.2
```
- And finally install BunkerWeb 1.4.1 :
+ And finally install BunkerWeb 1.4.2 :
```shell
dnf install -y epel-release && \
curl -s https://packagecloud.io/install/repositories/bunkerity/bunkerweb/script.rpm.sh | sudo bash && \
sudo dnf check-update && \
- sudo dnf install -y bunkerweb-1.4.1
+ sudo dnf install -y bunkerweb-1.4.2
```
To prevent upgrading NGINX and/or BunkerWeb packages when executing `dnf upgrade`, you can use the following command :
diff --git a/docs/plugins.md b/docs/plugins.md
index f2aeed02b..baa4259a1 100644
--- a/docs/plugins.md
+++ b/docs/plugins.md
@@ -53,13 +53,13 @@ The first step is to install the plugin by putting the plugin files inside the c
...
-v "${PWD}/bw-data:/data" \
...
- bunkerity/bunkerweb:1.4.1
+ bunkerity/bunkerweb:1.4.2
```
Here is the docker-compose equivalent :
```yaml
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
volumes:
- ./bw-data:/data
...
diff --git a/docs/quickstart-guide.md b/docs/quickstart-guide.md
index 27404c982..799043f54 100644
--- a/docs/quickstart-guide.md
+++ b/docs/quickstart-guide.md
@@ -54,7 +54,7 @@ You will find more settings about reverse proxy in the [settings section](/1.4/s
-e USE_REVERSE_PROXY=yes \
-e REVERSE_PROXY_URL=/ \
-e REVERSE_PROXY_HOST=http://myapp \
- bunkerity/bunkerweb:1.4.1
+ bunkerity/bunkerweb:1.4.2
```
Here is the docker-compose equivalent :
@@ -64,7 +64,7 @@ You will find more settings about reverse proxy in the [settings section](/1.4/s
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
@@ -331,7 +331,7 @@ You will find more settings about reverse proxy in the [settings section](/1.4/s
-e app1.example.com_REVERSE_PROXY_HOST=http://myapp1 \
-e app2.example.com_REVERSE_PROXY_HOST=http://myapp2 \
-e app3.example.com_REVERSE_PROXY_HOST=http://myapp3 \
- bunkerity/bunkerweb:1.4.1
+ bunkerity/bunkerweb:1.4.2
```
Here is the docker-compose equivalent :
@@ -341,7 +341,7 @@ You will find more settings about reverse proxy in the [settings section](/1.4/s
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
@@ -875,13 +875,13 @@ REAL_IP_HEADER=X-Forwarded-For
-e "REAL_IP_FROM=1.2.3.0/24 100.64.0.0/16" \
-e REAL_IP_HEADER=X-Forwarded-For \
...
- bunkerity/bunkerweb:1.4.1
+ bunkerity/bunkerweb:1.4.2
```
Here is the docker-compose equivalent :
```yaml
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
...
environment:
- USE_REAL_IP=yes
@@ -900,13 +900,13 @@ REAL_IP_HEADER=X-Forwarded-For
-e "REAL_IP_FROM=1.2.3.0/24 100.64.0.0/16" \
-e REAL_IP_HEADER=X-Forwarded-For \
...
- bunkerity/bunkerweb:1.4.1
+ bunkerity/bunkerweb:1.4.2
```
Here is the docker-compose equivalent :
```yaml
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
...
environment:
- USE_REAL_IP=yes
@@ -925,13 +925,13 @@ REAL_IP_HEADER=X-Forwarded-For
-e "REAL_IP_FROM=1.2.3.0/24 100.64.0.0/16" \
-e REAL_IP_HEADER=X-Forwarded-For \
...
- bunkerity/bunkerweb:1.4.1
+ bunkerity/bunkerweb:1.4.2
```
Here is the docker-compose equivalent (using `docker stack deploy`) :
```yaml
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
...
environment:
- USE_REAL_IP=yes
@@ -956,7 +956,7 @@ REAL_IP_HEADER=X-Forwarded-For
spec:
containers:
- name: bunkerweb
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
...
env:
- name: USE_REAL_IP
@@ -1008,13 +1008,13 @@ REAL_IP_HEADER=proxy_protocol
-e "REAL_IP_FROM=1.2.3.0/24 100.64.0.0/16" \
-e REAL_IP_HEADER=proxy_protocol \
...
- bunkerity/bunkerweb:1.4.1
+ bunkerity/bunkerweb:1.4.2
```
Here is the docker-compose equivalent :
```yaml
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
...
environment:
- USE_REAL_IP=yes
@@ -1035,13 +1035,13 @@ REAL_IP_HEADER=proxy_protocol
-e "REAL_IP_FROM=1.2.3.0/24 100.64.0.0/16" \
-e REAL_IP_HEADER=proxy_protocol \
...
- bunkerity/bunkerweb:1.4.1
+ bunkerity/bunkerweb:1.4.2
```
Here is the docker-compose equivalent :
```yaml
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
...
environment:
- USE_REAL_IP=yes
@@ -1062,13 +1062,13 @@ REAL_IP_HEADER=proxy_protocol
-e "REAL_IP_FROM=1.2.3.0/24 100.64.0.0/16" \
-e REAL_IP_HEADER=proxy_protocol \
...
- bunkerity/bunkerweb:1.4.1
+ bunkerity/bunkerweb:1.4.2
```
Here is the docker-compose equivalent (using `docker stack deploy`) :
```yaml
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
...
environment:
- USE_REAL_IP=yes
@@ -1094,7 +1094,7 @@ REAL_IP_HEADER=proxy_protocol
spec:
containers:
- name: bunkerweb
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
...
env:
- name: USE_REAL_IP
@@ -1169,13 +1169,13 @@ Some integrations offer a more convenient way of applying configurations for exa
...
-v "${PWD}/bw-data:/data" \
...
- bunkerity/bunkerweb:1.4.1
+ bunkerity/bunkerweb:1.4.2
```
Here is the docker-compose equivalent :
```yaml
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
volumes:
- ./bw-data:/data
...
@@ -1212,13 +1212,13 @@ Some integrations offer a more convenient way of applying configurations for exa
...
-v "${PWD}/bw-data:/data" \
...
- bunkerity/bunkerweb:1.4.1
+ bunkerity/bunkerweb:1.4.2
```
Here is the docker-compose equivalent :
```yaml
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
volumes:
- ./bw-data:/data
...
diff --git a/docs/troubleshooting.md b/docs/troubleshooting.md
index d61b27ff4..b8875d886 100644
--- a/docs/troubleshooting.md
+++ b/docs/troubleshooting.md
@@ -203,14 +203,14 @@ You can manually unban an IP which can be useful when doing some tests but it ne
=== "Docker autoconf"
- You can use the `docker exec` command (replace `mya` with the name of your container) :
+ You can use the `docker exec` command (replace `myautoconf` with the name of your container) :
```shell
- docker exec mybunker bwcli unban 1.2.3.4
+ docker exec myautoconf bwcli unban 1.2.3.4
```
- Here is the docker-compose equivalent (replace `mybunker` with the name of the services declared in the docker-compose.yml file) :
+ Here is the docker-compose equivalent (replace `myautoconf` with the name of the services declared in the docker-compose.yml file) :
```shell
- docker-compose exec mybunker bwcli unban 1.2.3.4
+ docker-compose exec myautoconf bwcli unban 1.2.3.4
```
=== "Swarm"
@@ -229,9 +229,9 @@ You can manually unban an IP which can be useful when doing some tests but it ne
=== "Linux"
- You can use the `bwcli` command :
+ You can use the `bwcli` command (as root) :
```shell
- bwcli unban 1.2.3.4
+ sudo bwcli unban 1.2.3.4
```
## Whitelisting
diff --git a/docs/web-ui.md b/docs/web-ui.md
index b7daa21f7..cdd88bb56 100644
--- a/docs/web-ui.md
+++ b/docs/web-ui.md
@@ -78,7 +78,7 @@ Because the web UI is a web application, the recommended installation procedure
-e "bwadm.example.com_REVERSE_PROXY_HEADER=X-Script-Name /changeme" \
-e bwadm.example.com_REVERSE_PROXY_INTERCEPT_ERRORS=no \
-l bunkerweb.UI \
- bunkerity/bunkerweb:1.4.1 && \
+ bunkerity/bunkerweb:1.4.2 && \
docker network connect bw-ui mybunker
```
@@ -117,7 +117,7 @@ Because the web UI is a web application, the recommended installation procedure
-e ADMIN_USERNAME=admin \
-e ADMIN_PASSWORD=changeme \
-e ABSOLUTE_URI=http(s)://bwadm.example.com/changeme/
- bunkerity/bunkerweb-ui:1.4.1 && \
+ bunkerity/bunkerweb-ui:1.4.2 && \
docker network connect bw-docker myui
```
@@ -133,7 +133,7 @@ Because the web UI is a web application, the recommended installation procedure
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
networks:
- bw-services
- bw-ui
@@ -156,7 +156,7 @@ Because the web UI is a web application, the recommended installation procedure
- "bunkerweb.UI"
myui:
- image: bunkerity/bunkerweb-ui:1.4.1
+ image: bunkerity/bunkerweb-ui:1.4.2
depends_on:
- mydocker
networks:
diff --git a/examples/authelia/docker-compose.yml b/examples/authelia/docker-compose.yml
index 79c56a58d..812b454e4 100644
--- a/examples/authelia/docker-compose.yml
+++ b/examples/authelia/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3.4'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/authentik/docker-compose.yml b/examples/authentik/docker-compose.yml
index ea4a5f376..02b8b8716 100644
--- a/examples/authentik/docker-compose.yml
+++ b/examples/authentik/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3.4'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/behind-reverse-proxy/docker-compose.yml b/examples/behind-reverse-proxy/docker-compose.yml
index 65e96a334..2a5438b99 100644
--- a/examples/behind-reverse-proxy/docker-compose.yml
+++ b/examples/behind-reverse-proxy/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
# ⚠️ read this if you use local folders for volumes ⚠️
# bunkerweb runs as an unprivileged user with UID/GID 101
# don't forget to edit the permissions of the files and folders accordingly
diff --git a/examples/bigbluebutton/docker-compose.yml b/examples/bigbluebutton/docker-compose.yml
index e12ed6efc..9bb52d389 100644
--- a/examples/bigbluebutton/docker-compose.yml
+++ b/examples/bigbluebutton/docker-compose.yml
@@ -27,7 +27,7 @@ services:
...
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/certbot-dns-cloudflare/docker-compose.yml b/examples/certbot-dns-cloudflare/docker-compose.yml
index bb20aedd9..09cf3a54a 100644
--- a/examples/certbot-dns-cloudflare/docker-compose.yml
+++ b/examples/certbot-dns-cloudflare/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/certbot-dns-digitalocean/docker-compose.yml b/examples/certbot-dns-digitalocean/docker-compose.yml
index a1791f00c..09f00cc86 100644
--- a/examples/certbot-dns-digitalocean/docker-compose.yml
+++ b/examples/certbot-dns-digitalocean/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/certbot-dns-google/docker-compose.yml b/examples/certbot-dns-google/docker-compose.yml
index 9f1ff970e..043fa7778 100644
--- a/examples/certbot-dns-google/docker-compose.yml
+++ b/examples/certbot-dns-google/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/certbot-dns-ovh/docker-compose.yml b/examples/certbot-dns-ovh/docker-compose.yml
index 5980a76d3..c7ce36812 100644
--- a/examples/certbot-dns-ovh/docker-compose.yml
+++ b/examples/certbot-dns-ovh/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/certbot-dns-route53/docker-compose.yml b/examples/certbot-dns-route53/docker-compose.yml
index 2a9d48cbb..921d830b1 100644
--- a/examples/certbot-dns-route53/docker-compose.yml
+++ b/examples/certbot-dns-route53/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/drupal/docker-compose.yml b/examples/drupal/docker-compose.yml
index aa649fc07..0ab6fe6a6 100644
--- a/examples/drupal/docker-compose.yml
+++ b/examples/drupal/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/ghost/docker-compose.yml b/examples/ghost/docker-compose.yml
index 18631a55c..e61047fa3 100644
--- a/examples/ghost/docker-compose.yml
+++ b/examples/ghost/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/gogs/docker-compose.yml b/examples/gogs/docker-compose.yml
index 9f7ade43d..77230e110 100644
--- a/examples/gogs/docker-compose.yml
+++ b/examples/gogs/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/hardened/docker-compose.yml b/examples/hardened/docker-compose.yml
index 80595fdd3..8c7bc1814 100644
--- a/examples/hardened/docker-compose.yml
+++ b/examples/hardened/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
# dropping all capabilities
cap_drop:
- ALL
diff --git a/examples/joomla/docker-compose.yml b/examples/joomla/docker-compose.yml
index b41d4162c..efa80b0ed 100644
--- a/examples/joomla/docker-compose.yml
+++ b/examples/joomla/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/load-balancer/docker-compose.yml b/examples/load-balancer/docker-compose.yml
index 347d173f8..c95dcf616 100644
--- a/examples/load-balancer/docker-compose.yml
+++ b/examples/load-balancer/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/magento/docker-compose.yml b/examples/magento/docker-compose.yml
index 5125361a8..f9ac096c5 100644
--- a/examples/magento/docker-compose.yml
+++ b/examples/magento/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/mongo-express/docker-compose.yml b/examples/mongo-express/docker-compose.yml
index 0cbd46c66..81abed22f 100644
--- a/examples/mongo-express/docker-compose.yml
+++ b/examples/mongo-express/docker-compose.yml
@@ -24,7 +24,7 @@ services:
- mongo
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/moodle/docker-compose.yml b/examples/moodle/docker-compose.yml
index 7ff7d9f95..a2380658f 100644
--- a/examples/moodle/docker-compose.yml
+++ b/examples/moodle/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/nextcloud/docker-compose.yml b/examples/nextcloud/docker-compose.yml
index e7cddebfd..117942244 100644
--- a/examples/nextcloud/docker-compose.yml
+++ b/examples/nextcloud/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/passbolt/docker-compose.yml b/examples/passbolt/docker-compose.yml
index e27b58c9a..0dd381677 100644
--- a/examples/passbolt/docker-compose.yml
+++ b/examples/passbolt/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/php-multisite/docker-compose.yml b/examples/php-multisite/docker-compose.yml
index 8bb73a2cd..41b2d94c7 100644
--- a/examples/php-multisite/docker-compose.yml
+++ b/examples/php-multisite/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/php-singlesite/docker-compose.yml b/examples/php-singlesite/docker-compose.yml
index f2a78ec7e..813d0a32f 100644
--- a/examples/php-singlesite/docker-compose.yml
+++ b/examples/php-singlesite/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/prestashop/docker-compose.yml b/examples/prestashop/docker-compose.yml
index 6dbc54b75..fd1ca5410 100644
--- a/examples/prestashop/docker-compose.yml
+++ b/examples/prestashop/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/proxy-protocol/docker-compose.yml b/examples/proxy-protocol/docker-compose.yml
index 882d54134..6a2d7dd04 100644
--- a/examples/proxy-protocol/docker-compose.yml
+++ b/examples/proxy-protocol/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
# ⚠️ read this if you use local folders for volumes ⚠️
# bunkerweb runs as an unprivileged user with UID/GID 101
# don't forget to edit the permissions of the files and folders accordingly
diff --git a/examples/redmine/docker-compose.yml b/examples/redmine/docker-compose.yml
index 6f7ded469..1fc46b53e 100644
--- a/examples/redmine/docker-compose.yml
+++ b/examples/redmine/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/reverse-proxy-multisite/docker-compose.yml b/examples/reverse-proxy-multisite/docker-compose.yml
index c7dac3976..267f357cd 100644
--- a/examples/reverse-proxy-multisite/docker-compose.yml
+++ b/examples/reverse-proxy-multisite/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/reverse-proxy-singlesite/docker-compose.yml b/examples/reverse-proxy-singlesite/docker-compose.yml
index 2224282ff..e6655730e 100644
--- a/examples/reverse-proxy-singlesite/docker-compose.yml
+++ b/examples/reverse-proxy-singlesite/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/reverse-proxy-websocket/docker-compose.yml b/examples/reverse-proxy-websocket/docker-compose.yml
index d2ac8221e..777060945 100644
--- a/examples/reverse-proxy-websocket/docker-compose.yml
+++ b/examples/reverse-proxy-websocket/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/syslog/docker-compose.yml b/examples/syslog/docker-compose.yml
index 43b6106f4..c8505c99e 100644
--- a/examples/syslog/docker-compose.yml
+++ b/examples/syslog/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
logging:
driver: syslog
options:
diff --git a/examples/tomcat/docker-compose.yml b/examples/tomcat/docker-compose.yml
index c6f3cfb2f..78a85e832 100644
--- a/examples/tomcat/docker-compose.yml
+++ b/examples/tomcat/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/examples/tor-hidden-service/docker-compose.yml b/examples/tor-hidden-service/docker-compose.yml
index 5e8340871..4b5d4cbde 100644
--- a/examples/tor-hidden-service/docker-compose.yml
+++ b/examples/tor-hidden-service/docker-compose.yml
@@ -11,7 +11,7 @@ services:
- SERVICE1_TOR_SERVICE_VERSION=3
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
# ⚠️ read this if you use local folders for volumes ⚠️
# bunkerweb runs as an unprivileged user with UID/GID 101
# don't forget to edit the permissions of the files and folders accordingly
diff --git a/examples/web-ui/docker-compose.yml b/examples/web-ui/docker-compose.yml
index 1a39d006c..3f259f320 100644
--- a/examples/web-ui/docker-compose.yml
+++ b/examples/web-ui/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
@@ -42,7 +42,7 @@ services:
- net_svc
myui:
- image: bunkerity/bunkerweb-ui:1.4.1
+ image: bunkerity/bunkerweb-ui:1.4.2
depends_on:
- myuiproxy
volumes:
diff --git a/examples/wordpress/docker-compose.yml b/examples/wordpress/docker-compose.yml
index 28737d830..adb7a3d4d 100644
--- a/examples/wordpress/docker-compose.yml
+++ b/examples/wordpress/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
diff --git a/integrations/autoconf/docker-compose.yml b/integrations/autoconf/docker-compose.yml
index f57dab1a7..e05b5e929 100644
--- a/integrations/autoconf/docker-compose.yml
+++ b/integrations/autoconf/docker-compose.yml
@@ -3,7 +3,7 @@ version: '3'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- 80:8080
- 443:8443
@@ -20,7 +20,7 @@ services:
- bw-services
myautoconf:
- image: bunkerity/bunkerweb-autoconf:1.4.1
+ image: bunkerity/bunkerweb-autoconf:1.4.2
volumes:
- ./bw-data:/data
- /var/run/docker.sock:/var/run/docker.sock:ro
diff --git a/integrations/kubernetes/bunkerweb.yml b/integrations/kubernetes/bunkerweb.yml
index cb12fc207..818e494f4 100644
--- a/integrations/kubernetes/bunkerweb.yml
+++ b/integrations/kubernetes/bunkerweb.yml
@@ -16,7 +16,7 @@ spec:
spec:
containers:
- name: bunkerweb
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
imagePullPolicy: Always
securityContext:
runAsUser: 101
@@ -106,7 +106,7 @@ spec:
claimName: pvc-bunkerweb
containers:
- name: bunkerweb-controller
- image: bunkerity/bunkerweb-autoconf:1.4.1
+ image: bunkerity/bunkerweb-autoconf:1.4.2
imagePullPolicy: Always
env:
- name: KUBERNETES_MODE
diff --git a/integrations/swarm/stack.yml b/integrations/swarm/stack.yml
index 5d96f79f7..668660a5f 100644
--- a/integrations/swarm/stack.yml
+++ b/integrations/swarm/stack.yml
@@ -3,7 +3,7 @@ version: '3.5'
services:
mybunker:
- image: bunkerity/bunkerweb:1.4.1
+ image: bunkerity/bunkerweb:1.4.2
ports:
- published: 80
target: 8080
@@ -31,7 +31,7 @@ services:
- "bunkerweb.AUTOCONF"
myautoconf:
- image: bunkerity/bunkerweb-autoconf:1.4.1
+ image: bunkerity/bunkerweb-autoconf:1.4.2
environment:
- SWARM_MODE=yes
volumes: