From f7290b2c791755e4b8369ddcb46c8f7671c0fe71 Mon Sep 17 00:00:00 2001 From: bunkerity Date: Mon, 27 Jun 2022 17:32:15 +0200 Subject: [PATCH] v1.4.2 release --- README.md | 2 +- VERSION | 2 +- docs/integrations.md | 48 +++++++++---------- docs/plugins.md | 4 +- docs/quickstart-guide.md | 44 ++++++++--------- docs/troubleshooting.md | 12 ++--- docs/web-ui.md | 8 ++-- examples/authelia/docker-compose.yml | 2 +- examples/authentik/docker-compose.yml | 2 +- .../behind-reverse-proxy/docker-compose.yml | 2 +- examples/bigbluebutton/docker-compose.yml | 2 +- .../certbot-dns-cloudflare/docker-compose.yml | 2 +- .../docker-compose.yml | 2 +- .../certbot-dns-google/docker-compose.yml | 2 +- examples/certbot-dns-ovh/docker-compose.yml | 2 +- .../certbot-dns-route53/docker-compose.yml | 2 +- examples/drupal/docker-compose.yml | 2 +- examples/ghost/docker-compose.yml | 2 +- examples/gogs/docker-compose.yml | 2 +- examples/hardened/docker-compose.yml | 2 +- examples/joomla/docker-compose.yml | 2 +- examples/load-balancer/docker-compose.yml | 2 +- examples/magento/docker-compose.yml | 2 +- examples/mongo-express/docker-compose.yml | 2 +- examples/moodle/docker-compose.yml | 2 +- examples/nextcloud/docker-compose.yml | 2 +- examples/passbolt/docker-compose.yml | 2 +- examples/php-multisite/docker-compose.yml | 2 +- examples/php-singlesite/docker-compose.yml | 2 +- examples/prestashop/docker-compose.yml | 2 +- examples/proxy-protocol/docker-compose.yml | 2 +- examples/redmine/docker-compose.yml | 2 +- .../docker-compose.yml | 2 +- .../docker-compose.yml | 2 +- .../docker-compose.yml | 2 +- examples/syslog/docker-compose.yml | 2 +- examples/tomcat/docker-compose.yml | 2 +- .../tor-hidden-service/docker-compose.yml | 2 +- examples/web-ui/docker-compose.yml | 4 +- examples/wordpress/docker-compose.yml | 2 +- integrations/autoconf/docker-compose.yml | 4 +- integrations/kubernetes/bunkerweb.yml | 4 +- integrations/swarm/stack.yml | 4 +- 43 files changed, 100 insertions(+), 100 deletions(-) diff --git a/README.md b/README.md index 2ab0a2a8..c77a2223 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@

- + diff --git a/VERSION b/VERSION index 13175fdc..c9929e36 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 53e6e7b0..762778d6 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 f2aeed02..baa4259a 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 27404c98..799043f5 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 d61b27ff..b8875d88 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 b7daa21f..cdd88bb5 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 79c56a58..812b454e 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 ea4a5f37..02b8b871 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 65e96a33..2a5438b9 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 e12ed6ef..9bb52d38 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 bb20aedd..09cf3a54 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 a1791f00..09f00cc8 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 9f1ff970..043fa777 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 5980a76d..c7ce3681 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 2a9d48cb..921d830b 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 aa649fc0..0ab6fe6a 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 18631a55..e61047fa 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 9f7ade43..77230e11 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 80595fdd..8c7bc181 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 b41d4162..efa80b0e 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 347d173f..c95dcf61 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 5125361a..f9ac096c 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 0cbd46c6..81abed22 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 7ff7d9f9..a2380658 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 e7cddebf..11794224 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 e27b58c9..0dd38167 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 8bb73a2c..41b2d94c 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 f2a78ec7..813d0a32 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 6dbc54b7..fd1ca541 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 882d5413..6a2d7dd0 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 6f7ded46..1fc46b53 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 c7dac397..267f357c 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 2224282f..e6655730 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 d2ac8221..77706094 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 43b6106f..c8505c99 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 c6f3cfb2..78a85e83 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 5e834087..4b5d4cbd 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 1a39d006..3f259f32 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 28737d83..adb7a3d4 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 f57dab1a..e05b5e92 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 cb12fc20..818e494f 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 5d96f79f..668660a5 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: