Skip to content

Commit 65716ae

Browse files
authored
v5.1.2 (#121)
Minor updates * Using latest base image Documentation updates * Moving json schema to bfren Build updates * Updating read-file action
1 parent 9628635 commit 65716ae

File tree

6 files changed

+17
-50
lines changed

6 files changed

+17
-50
lines changed

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
shell: bash
2626
-
2727
name: Read image version
28-
uses: bfren/read-file@v1
28+
uses: bfren/read-file@v2
2929
with:
3030
file: ./VERSION
3131
id: version

.github/workflows/publish.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@ jobs:
1818
shell: bash
1919
-
2020
name: Read image version
21-
uses: bfren/read-file@v1
21+
uses: bfren/read-file@v2
2222
with:
2323
file: ./VERSION_MAJOR
2424
id: version_major
2525
-
2626
name: Read image version
27-
uses: bfren/read-file@v1
27+
uses: bfren/read-file@v2
2828
with:
2929
file: ./VERSION_MINOR
3030
id: version_minor
3131
-
3232
name: Read version
33-
uses: bfren/read-file@v1
33+
uses: bfren/read-file@v2
3434
with:
3535
file: ./VERSION
3636
id: version

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM bfren/nginx:nginx1.22-4.0.15
1+
FROM bfren/nginx:nginx1.22-4.0.16
22

33
LABEL org.opencontainers.image.source="https://github.com/bfren/docker-nginx-proxy"
44

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
5.1.1
1+
5.1.2

ssl-conf-sample.json

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,23 @@
11
{
2-
"$schema": "https://raw.githubusercontent.com/bfren/docker-nginx-proxy/main/ssl-conf-schema.json",
2+
"$schema": "https://schemas.bfren.dev/docker/nginx-proxy/domains.json",
33
"domains": [
44
{
55
"primary": "example.com",
66
"upstream": "http://example:5000",
7-
"aliases": [ "www.example.com", "ex.com", "www.ex.com" ],
7+
"aliases": [
8+
"www.example.com",
9+
"ex.com",
10+
"www.ex.com"
11+
],
812
"custom": true
913
},
1014
{
1115
"primary": "test.com",
1216
"upstream": "http://test",
13-
"aliases": [ "www.test.com", "fred.co.uk" ]
17+
"aliases": [
18+
"www.test.com",
19+
"fred.co.uk"
20+
]
1421
}
1522
]
16-
}
23+
}

ssl-conf-schema.json

Lines changed: 0 additions & 40 deletions
This file was deleted.

0 commit comments

Comments
 (0)