Add version 1.2.2; Documentation is OBSOLETE and only refers to 1.0. Retire armhf and i386

This commit is contained in:
2025-09-21 23:40:13 +02:00
parent 3ab8239715
commit f8f9462f5d
2 changed files with 18 additions and 11 deletions

View File

@@ -2,31 +2,30 @@
Docker build of Bredbandskollen's CLI client (bbk-cli) based on Alpine Linux 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). 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. [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). 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 #### Docker build
##### Images ##### Images
``` ```
nlss/bbk-cli:latest 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. Image is tagged with software version. Image might be updated whilst version of the bundled software remains the same.
##### Supported platforms ##### Supported platforms
- linux/i386
- linux/amd64 - linux/amd64
- linux/armhf
- linux/aarch64 - linux/aarch64
Note: ARM support is questionable and untested. Note: ARM support is questionable and untested.
##### Running ##### Running
To run bbk cli, use this command: To run bbk cli, use this command:
``` ```
docker run --init --rm -it nlss/bbk-cli 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: You can also supply arbitrary arguments like this:
``` ```
docker run --init --rm -it nlss/bbk-cli --help docker run --init --rm -it nlss/bbk-cli --help
``` ```

View File

@@ -1,5 +1,5 @@
group "default" { group "default" {
targets = ["1_0"] targets = ["1_0", "1_2_2"]
} }
target "build-dockerfile" { target "build-dockerfile" {
@@ -7,7 +7,7 @@ target "build-dockerfile" {
} }
target "build-platforms" { target "build-platforms" {
platforms = ["linux/i386", "linux/amd64", "linux/armhf", "linux/aarch64"] platforms = ["linux/amd64", "linux/aarch64"]
} }
target "build-common" { target "build-common" {
@@ -16,8 +16,16 @@ target "build-common" {
target "1_0" { target "1_0" {
inherits = ["build-dockerfile", "build-platforms", "build-common"] 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 = { args = {
BBKCLI_VERSION = "1.0" BBKCLI_VERSION = "1.0"
} }
} }
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"
}
}