mirror of
https://github.com/N0rthernL1ghts/bbk-docker.git
synced 2025-12-08 09:31:32 +01:00
Add version 1.2.2; Documentation is OBSOLETE and only refers to 1.0. Retire armhf and i386
This commit is contained in:
13
README.md
13
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
|
||||
```
|
||||
```
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user