From a150dd449ae8f2e00207ad84a35cff8d6796a417 Mon Sep 17 00:00:00 2001 From: jokob-sk Date: Mon, 6 Jan 2025 19:58:37 +1100 Subject: [PATCH 1/5] host network + armv6 removal --- netalertx/config.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netalertx/config.json b/netalertx/config.json index f755231be..de2478d3e 100644 --- a/netalertx/config.json +++ b/netalertx/config.json @@ -2,8 +2,7 @@ "arch": [ "aarch64", "amd64", - "armv7", - "armv6" + "armv7" ], "codenotary": "alexandrep.github@gmail.com", "description": "🖧🔍 WIFI / LAN scanner, intruder, and presence detector", @@ -71,6 +70,7 @@ "TZ": "Europe/Berlin", "APP_CONF_OVERRIDE":{"GRAPHQL_PORT":"20212"} }, + "host_network": true, "image": "ghcr.io/alexbelgium/netalertx-{arch}", "init": false, "map": [ From 9e609ccc9eb8563903d346f8955bf3201eda6f89 Mon Sep 17 00:00:00 2001 From: jokob-sk Date: Mon, 6 Jan 2025 20:02:33 +1100 Subject: [PATCH 2/5] changelog --- netalertx/CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/netalertx/CHANGELOG.md b/netalertx/CHANGELOG.md index ad3e6bd98..9a2f755b9 100644 --- a/netalertx/CHANGELOG.md +++ b/netalertx/CHANGELOG.md @@ -1,3 +1,7 @@ +## 0.0.2 + +- armv6 removal, host network + ## 0.0.1 - Initial commit From 4293f4fbad3f75df3ff9616c9fa530ef1239293e Mon Sep 17 00:00:00 2001 From: jokob-sk Date: Mon, 6 Jan 2025 20:05:53 +1100 Subject: [PATCH 3/5] armv6 one spot missed --- netalertx/build.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/netalertx/build.json b/netalertx/build.json index 7852b6ed5..c1e71a41e 100644 --- a/netalertx/build.json +++ b/netalertx/build.json @@ -2,8 +2,7 @@ "build_from": { "aarch64": "netalertx:latest", "amd64": "netalertx:latest", - "armv7": "netalertx:latest", - "armv6": "netalertx:latest" + "armv7": "netalertx:latest" }, "codenotary": { "signer": "alexandrep.github@gmail.com" From 1f33530053c295db07d1ff3a6759975034728ab5 Mon Sep 17 00:00:00 2001 From: jokob-sk Date: Mon, 6 Jan 2025 20:09:18 +1100 Subject: [PATCH 4/5] trying without :latest tag --- netalertx/build.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/netalertx/build.json b/netalertx/build.json index c1e71a41e..d7cff7f7d 100644 --- a/netalertx/build.json +++ b/netalertx/build.json @@ -1,8 +1,8 @@ { "build_from": { - "aarch64": "netalertx:latest", - "amd64": "netalertx:latest", - "armv7": "netalertx:latest" + "aarch64": "netalertx", + "amd64": "netalertx", + "armv7": "netalertx" }, "codenotary": { "signer": "alexandrep.github@gmail.com" From 8dc5c6406527e379e0f3b239b30e6cd12624a710 Mon Sep 17 00:00:00 2001 From: jokob-sk Date: Mon, 6 Jan 2025 20:15:07 +1100 Subject: [PATCH 5/5] correctling image path --- netalertx/build.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/netalertx/build.json b/netalertx/build.json index d7cff7f7d..d3fd71ab6 100644 --- a/netalertx/build.json +++ b/netalertx/build.json @@ -1,8 +1,8 @@ { "build_from": { - "aarch64": "netalertx", - "amd64": "netalertx", - "armv7": "netalertx" + "aarch64": "jokobsk/netalertx:latest", + "amd64": "jokobsk/netalertx:latest", + "armv7": "jokobsk/netalertx:latest" }, "codenotary": { "signer": "alexandrep.github@gmail.com"