Skip to content

Commit 85c7d37

Browse files
committed
road to v1.4.7
1 parent 0421b25 commit 85c7d37

File tree

51 files changed

+120
-120
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+120
-120
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
</p>
44

55
<p align="center">
6-
<img src="https://img.shields.io/badge/bunkerweb-1.4.6-blue" />
6+
<img src="https://img.shields.io/badge/bunkerweb-1.4.7-blue" />
77
<img src="https://img.shields.io/github/last-commit/bunkerity/bunkerweb" />
88
<img src="https://img.shields.io/github/actions/workflow/status/bunkerity/bunkerweb/dev.yml?label=CI%2FCD%20dev&branch=1.4" />
99
<img src="https://img.shields.io/github/actions/workflow/status/bunkerity/bunkerweb/dev.yml?label=CI%2FCD%20prod" />

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.4.6
1+
1.4.7

docs/backup-new-integrations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
sudo dnf install nginx-1.20.2
1818
```
1919

20-
And finally install BunkerWeb 1.4.6 :
20+
And finally install BunkerWeb 1.4.7 :
2121
```shell
2222
wget https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm && \
2323
rpm -Uvh epel-release*rpm && \
2424
curl -s https://packagecloud.io/install/repositories/bunkerity/bunkerweb/script.rpm.sh | sudo bash && \
2525
sudo dnf check-update && \
26-
sudo dnf install -y bunkerweb-1.4.6
26+
sudo dnf install -y bunkerweb-1.4.7
2727
```
2828

2929
To prevent upgrading NGINX and/or BunkerWeb packages when executing `dnf upgrade`, you can use the following command :

docs/integrations.md

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Using BunkerWeb as a [Docker](https://www.docker.com/) container is a quick and
1212
We provide ready-to-use prebuilt images for x64, x86 armv8 and armv7 architectures on [Docker Hub](https://hub.docker.com/r/bunkerity/bunkerweb) :
1313

1414
```shell
15-
docker pull bunkerity/bunkerweb:1.4.6
15+
docker pull bunkerity/bunkerweb:1.4.7
1616
```
1717

1818
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 \
3939
-e MY_SETTING=value \
4040
-e "MY_OTHER_SETTING=value with spaces" \
4141
...
42-
bunkerity/bunkerweb:1.4.6
42+
bunkerity/bunkerweb:1.4.7
4343
```
4444

4545
Here is the docker-compose equivalent :
@@ -48,7 +48,7 @@ Here is the docker-compose equivalent :
4848
...
4949
services:
5050
mybunker:
51-
image: bunkerity/bunkerweb:1.4.6
51+
image: bunkerity/bunkerweb:1.4.7
5252
environment:
5353
- MY_SETTING=value
5454
```
@@ -73,7 +73,7 @@ docker run \
7373
...
7474
-v bw_data:/data \
7575
...
76-
bunkerity/bunkerweb:1.4.6
76+
bunkerity/bunkerweb:1.4.7
7777
```
7878

7979
Here is the docker-compose equivalent :
@@ -82,7 +82,7 @@ Here is the docker-compose equivalent :
8282
...
8383
services:
8484
mybunker:
85-
image: bunkerity/bunkerweb:1.4.6
85+
image: bunkerity/bunkerweb:1.4.7
8686
volumes:
8787
- bw_data:/data
8888
...
@@ -152,7 +152,7 @@ docker run \
152152
...
153153
--network mynetwork \
154154
...
155-
bunkerity/bunkerweb:1.4.6
155+
bunkerity/bunkerweb:1.4.7
156156
```
157157

158158
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 :
163163
...
164164
services:
165165
mybunker:
166-
image: bunkerity/bunkerweb:1.4.6
166+
image: bunkerity/bunkerweb:1.4.7
167167
networks:
168168
- bw-net
169169
...
@@ -218,7 +218,7 @@ docker run \
218218
-e SERVER_NAME= \
219219
-e "API_WHITELIST_IP=127.0.0.0/8 10.20.30.0/24" \
220220
-l bunkerweb.AUTOCONF \
221-
bunkerity/bunkerweb:1.4.6 && \
221+
bunkerity/bunkerweb:1.4.7 && \
222222
223223
docker network connect bw-services mybunker
224224
```
@@ -235,7 +235,7 @@ docker run \
235235
--network bw-autoconf \
236236
-v bw-data:/data \
237237
-v /var/run/docker.sock:/var/run/docker.sock:ro \
238-
bunkerity/bunkerweb-autoconf:1.4.6
238+
bunkerity/bunkerweb-autoconf:1.4.7
239239
```
240240

241241
Here is the docker-compose equivalent for the BunkerWeb autoconf stack :
@@ -246,7 +246,7 @@ version: '3.5'
246246
services:
247247
248248
mybunker:
249-
image: bunkerity/bunkerweb:1.4.6
249+
image: bunkerity/bunkerweb:1.4.7
250250
ports:
251251
- 80:8080
252252
- 443:8443
@@ -262,7 +262,7 @@ services:
262262
- bw-services
263263
264264
myautoconf:
265-
image: bunkerity/bunkerweb-autoconf:1.4.6
265+
image: bunkerity/bunkerweb-autoconf:1.4.7
266266
volumes:
267267
- bw-data:/data
268268
- /var/run/docker.sock:/var/run/docker.sock:ro
@@ -364,7 +364,7 @@ docker service create \
364364
-e MULTISITE=yes \
365365
-e "API_WHITELIST_IP=127.0.0.0/8 10.20.30.0/24" \
366366
-l bunkerweb.AUTOCONF \
367-
bunkerity/bunkerweb:1.4.6
367+
bunkerity/bunkerweb:1.4.7
368368
```
369369

370370
And the autoconf one :
@@ -378,7 +378,7 @@ docker service \
378378
--mount type=bind,source=/var/run/docker.sock,destination=/var/run/docker.sock,ro \
379379
--mount type=volume,source=bw-data,destination=/data \
380380
-e SWARM_MODE=yes \
381-
bunkerity/bunkerweb-autoconf:1.4.6
381+
bunkerity/bunkerweb-autoconf:1.4.7
382382
```
383383

384384
Here is the docker-compose equivalent (using `docker stack deploy`) :
@@ -389,7 +389,7 @@ version: '3.5'
389389
services:
390390
391391
mybunker:
392-
image: bunkerity/bunkerweb:1.4.6
392+
image: bunkerity/bunkerweb:1.4.7
393393
ports:
394394
- published: 80
395395
target: 8080
@@ -416,7 +416,7 @@ services:
416416
- "bunkerweb.AUTOCONF"
417417
418418
myautoconf:
419-
image: bunkerity/bunkerweb-autoconf:1.4.6
419+
image: bunkerity/bunkerweb-autoconf:1.4.7
420420
environment:
421421
- SWARM_MODE=yes
422422
volumes:
@@ -706,11 +706,11 @@ Repositories of Linux packages for BunkerWeb are available on [PackageCloud](htt
706706
sudo apt install -y nginx=1.20.2-1~$(lsb_release -cs)
707707
```
708708

709-
And finally install BunkerWeb 1.4.6 :
709+
And finally install BunkerWeb 1.4.7 :
710710
```shell
711711
curl -s https://packagecloud.io/install/repositories/bunkerity/bunkerweb/script.deb.sh | sudo bash && \
712712
sudo apt update && \
713-
sudo apt install -y bunkerweb=1.4.6
713+
sudo apt install -y bunkerweb=1.4.7
714714
```
715715
716716
To prevent upgrading NGINX and/or BunkerWeb packages when executing `apt upgrade`, you can use the following command :
@@ -736,11 +736,11 @@ Repositories of Linux packages for BunkerWeb are available on [PackageCloud](htt
736736
sudo apt install -y nginx=1.20.2-1~jammy
737737
```
738738

739-
And finally install BunkerWeb 1.4.6 :
739+
And finally install BunkerWeb 1.4.7 :
740740
```shell
741741
curl -s https://packagecloud.io/install/repositories/bunkerity/bunkerweb/script.deb.sh | sudo bash && \
742742
sudo apt update && \
743-
sudo apt install -y bunkerweb=1.4.6
743+
sudo apt install -y bunkerweb=1.4.7
744744
```
745745
746746
To prevent upgrading NGINX and/or BunkerWeb packages when executing `apt upgrade`, you can use the following command :
@@ -755,13 +755,13 @@ Repositories of Linux packages for BunkerWeb are available on [PackageCloud](htt
755755
sudo dnf install -y nginx-1.20.2
756756
```
757757

758-
And finally install BunkerWeb 1.4.6 :
758+
And finally install BunkerWeb 1.4.7 :
759759
```shell
760760
curl -s https://packagecloud.io/install/repositories/bunkerity/bunkerweb/script.rpm.sh | \
761761
sed 's/yum install -y pygpgme --disablerepo='\''bunkerity_bunkerweb'\''/yum install -y python-gnupg/g' | \
762762
sed 's/pypgpme_check=`rpm -qa | grep -qw pygpgme`/python-gnupg_check=`rpm -qa | grep -qw python-gnupg`/g' | sudo bash && \
763763
sudo dnf makecache && \
764-
sudo dnf install -y bunkerweb-1.4.6
764+
sudo dnf install -y bunkerweb-1.4.7
765765
```
766766

767767
To prevent upgrading NGINX and/or BunkerWeb packages when executing `dnf upgrade`, you can use the following command :
@@ -788,12 +788,12 @@ Repositories of Linux packages for BunkerWeb are available on [PackageCloud](htt
788788
sudo dnf install nginx-1.20.2
789789
```
790790

791-
And finally install BunkerWeb 1.4.6 :
791+
And finally install BunkerWeb 1.4.7 :
792792
```shell
793793
dnf install -y epel-release && \
794794
curl -s https://packagecloud.io/install/repositories/bunkerity/bunkerweb/script.rpm.sh | sudo bash && \
795795
sudo dnf check-update && \
796-
sudo dnf install -y bunkerweb-1.4.6
796+
sudo dnf install -y bunkerweb-1.4.7
797797
```
798798

799799
To prevent upgrading NGINX and/or BunkerWeb packages when executing `dnf upgrade`, you can use the following command :
@@ -928,7 +928,7 @@ Configuration of BunkerWeb is done by using specific role variables :
928928

929929
| Name | Type | Description | Default value |
930930
|:-----:|:-----:|--------------|----------------|
931-
| `bunkerweb_version` | string | Version of BunkerWeb to install. | `1.4.6` |
931+
| `bunkerweb_version` | string | Version of BunkerWeb to install. | `1.4.7` |
932932
| `nginx_version` | string | Version of NGINX to install. | `1.20.2` |
933933
| `freeze_versions` | boolean | Prevent upgrade of BunkerWeb and NGINX when performing packages upgrades. | `true` |
934934
| `variables_env` | string | Path of the variables.env file to configure BunkerWeb. | `files/variables.env` |

docs/plugins.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ The first step is to install the plugin by putting the plugin files inside the c
5353
...
5454
-v "${PWD}/bw-data:/data" \
5555
...
56-
bunkerity/bunkerweb:1.4.6
56+
bunkerity/bunkerweb:1.4.7
5757
```
5858

5959
Here is the docker-compose equivalent :
6060
```yaml
6161
mybunker:
62-
image: bunkerity/bunkerweb:1.4.6
62+
image: bunkerity/bunkerweb:1.4.7
6363
volumes:
6464
- ./bw-data:/data
6565
...

0 commit comments

Comments
 (0)