This repository was archived by the owner on Apr 28, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +49
-4
lines changed Expand file tree Collapse file tree 5 files changed +49
-4
lines changed Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
call-workflow :
10
- uses : linuxserver-labs/docker-actions/.github/workflows/check-baseimage-update.yml@v5
10
+ uses : linuxserver-labs/docker-actions/.github/workflows/check-baseimage-update.yml@v6
11
11
with :
12
12
repo_owner : ${{ github.repository_owner }}
13
13
app_name : " invoiceninja"
Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
call-workflow :
10
- uses : linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v5
10
+ uses : linuxserver-labs/docker-actions/.github/workflows/build-image.yml@v6
11
11
with :
12
12
repo_owner : ${{ github.repository_owner }}
13
13
app_name : " invoiceninja"
14
14
release_type : " script"
15
+ target-arch : " 64"
15
16
secrets :
16
17
scarf_token : ${{ secrets.SCARF_TOKEN }}
Original file line number Diff line number Diff line change 7
7
8
8
jobs :
9
9
call-workflow :
10
- uses : linuxserver-labs/docker-actions/.github/workflows/check-and-release.yml@v5
10
+ uses : linuxserver-labs/docker-actions/.github/workflows/check-and-release.yml@v6
11
11
with :
12
12
repo_owner : ${{ github.repository_owner }}
13
13
app_name : " invoiceninja"
Original file line number Diff line number Diff line change @@ -35,6 +35,9 @@ Find us at:
35
35
[ ![ GitHub Stars] ( https://img.shields.io/github/stars/linuxserver-labs/docker-invoiceninja.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github )] ( https://github.com/linuxserver-labs/docker-invoiceninja )
36
36
[ ![ GitHub Release] ( https://img.shields.io/github/release/linuxserver-labs/docker-invoiceninja.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github )] ( https://github.com/linuxserver-labs/docker-invoiceninja/releases )
37
37
[ ![ GitHub Package Repository] ( https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitHub%20Package&logo=github )] ( https://github.com/linuxserver-labs/docker-invoiceninja/packages )
38
+ [ ![ ci] ( https://img.shields.io/github/workflow/status/linuxserver-labs/docker-invoiceninja/Check%20for%20update%20and%20release.svg?labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github&label=Check%20For%20Upstream%20Updates )] ( https://github.com/linuxserver-labs/docker-invoiceninja/actions/workflows/call-chck-and-release.yml )
39
+ [ ![ ci] ( https://img.shields.io/github/workflow/status/linuxserver-labs/docker-invoiceninja/Check%20for%20base%20image%20updates.svg?labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github&label=Check%20For%20Baseimage%20Updates )] ( https://github.com/linuxserver-labs/docker-invoiceninja/actions/workflows/call-baseimage-update.yml )
40
+ [ ![ ci] ( https://img.shields.io/github/workflow/status/linuxserver-labs/docker-invoiceninja/Build%20Image%20On%20Release.svg?labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github&label=Build%20Image )] ( https://github.com/linuxserver-labs/docker-invoiceninja/actions/workflows/call-build-image.yml )
38
41
39
42
[ Invoiceninja] ( https://www.invoiceninja.org/ ) is an invoicing application that makes sending invoices and receiving payments simple and easy."
40
43
Original file line number Diff line number Diff line change @@ -13,10 +13,51 @@ target "image-local" {
13
13
output = [" type=docker" ]
14
14
}
15
15
16
- target "image-all" {
16
+ target "amd64" {
17
+ inherits = [" image" ]
18
+ dockerfile = " Dockerfile"
19
+ platforms = [
20
+ " linux/amd64"
21
+ ]
22
+ }
23
+
24
+ target "arm64v8" {
25
+ inherits = [" image" ]
26
+ dockerfile = " Dockerfile.aarch64"
27
+ platforms = [
28
+ " linux/arm64"
29
+ ]
30
+ }
31
+
32
+ target "arm32v7" {
33
+ inherits = [" image" ]
34
+ dockerfile = " Dockerfile.armhf"
35
+ platforms = [
36
+ " linux/arm/v7"
37
+ ]
38
+ }
39
+
40
+ target "64" {
17
41
inherits = [" image" ]
18
42
platforms = [
19
43
" linux/amd64" ,
20
44
" linux/arm64"
21
45
]
22
46
}
47
+
48
+ target "arm" {
49
+ inherits = [" image" ]
50
+ platforms = [
51
+ " linux/arm64" ,
52
+ " linux/arm/v7"
53
+ ]
54
+ }
55
+
56
+ target "all" {
57
+ inherits = [" image" ]
58
+ platforms = [
59
+ " linux/amd64" ,
60
+ " linux/arm64" ,
61
+ " linux/arm/v7"
62
+ ]
63
+ }
You can’t perform that action at this time.
0 commit comments