From f8f9462f5d605c8a109b98857ca3479d1679fe70 Mon Sep 17 00:00:00 2001 From: xZero707 Date: Sun, 21 Sep 2025 23:40:13 +0200 Subject: [PATCH] Add version 1.2.2; Documentation is OBSOLETE and only refers to 1.0. Retire armhf and i386 --- README.md | 13 ++++++------- build/docker-bake.hcl | 16 ++++++++++++---- 2 files changed, 18 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index c39f977..f47ce2f 100644 --- a/README.md +++ b/README.md @@ -2,31 +2,30 @@ Docker build of Bredbandskollen's CLI client (bbk-cli) based on Alpine Linux For more information, read on [here](http://www.bredbandskollen.se/bredbandskollen-cli/) and [here](https://github.com/dotse/bbk). +Note that as of 2025-09, documentation still only refers to 1.0, while repository has moved on and latest version seems to be 1.2.2. [License](LICENSE) attached with this image doesn't apply to the software that is bundled in the image build. This repository is not distributing a copy of the software and therefore doesn't include copy of the [license](https://github.com/dotse/bbk/blob/master/src/LICENSE). #### Docker build - + ##### Images ``` nlss/bbk-cli:latest -nlss/bbk-cli:1.0 +nlss/bbk-cli:1.2 ``` Image is tagged with software version. Image might be updated whilst version of the bundled software remains the same. ##### Supported platforms -- linux/i386 - linux/amd64 -- linux/armhf - linux/aarch64 -Note: ARM support is questionable and untested. +Note: ARM support is questionable and untested. ##### Running -To run bbk cli, use this command: +To run bbk cli, use this command: ``` docker run --init --rm -it nlss/bbk-cli ``` @@ -34,4 +33,4 @@ docker run --init --rm -it nlss/bbk-cli You can also supply arbitrary arguments like this: ``` docker run --init --rm -it nlss/bbk-cli --help -``` \ No newline at end of file +``` diff --git a/build/docker-bake.hcl b/build/docker-bake.hcl index 07f54ff..0e2bdfd 100644 --- a/build/docker-bake.hcl +++ b/build/docker-bake.hcl @@ -1,5 +1,5 @@ group "default" { - targets = ["1_0"] + targets = ["1_0", "1_2_2"] } target "build-dockerfile" { @@ -7,7 +7,7 @@ target "build-dockerfile" { } target "build-platforms" { - platforms = ["linux/i386", "linux/amd64", "linux/armhf", "linux/aarch64"] + platforms = ["linux/amd64", "linux/aarch64"] } target "build-common" { @@ -16,8 +16,16 @@ target "build-common" { target "1_0" { inherits = ["build-dockerfile", "build-platforms", "build-common"] - tags = ["docker.io/nlss/bbk-cli:1", "docker.io/nlss/bbk-cli:1.0", "docker.io/nlss/bbk-cli:latest"] + tags = ["docker.io/nlss/bbk-cli:1.0"] args = { BBKCLI_VERSION = "1.0" } -} \ No newline at end of file +} + +target "1_2_2" { + inherits = ["build-dockerfile", "build-platforms", "build-common"] + tags = ["docker.io/nlss/bbk-cli:1", "docker.io/nlss/bbk-cli:1.2", "docker.io/nlss/bbk-cli:1.2.2", "docker.io/nlss/bbk-cli:latest"] + args = { + BBKCLI_VERSION = "1.2.2" + } +}