2022-07-08 22:09:49 +02:00
|
|
|
# bbk-docker
|
|
|
|
|
Docker build of Bredbandskollen's CLI client (bbk-cli) based on Alpine Linux
|
2022-07-09 15:45:19 +02:00
|
|
|
|
|
|
|
|
For more information, read on [here](http://www.bredbandskollen.se/bredbandskollen-cli/) and [here](https://github.com/dotse/bbk).
|
2025-09-21 23:40:13 +02:00
|
|
|
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.
|
2025-09-21 23:49:59 +02:00
|
|
|
|
|
|
|
|
This project, including bundled software is licensed under MIT license. See: [LICENSE](https://github.com/dotse/bbk/blob/master/src/LICENSE).
|
2022-07-09 15:45:19 +02:00
|
|
|
|
|
|
|
|
|
|
|
|
|
#### Docker build
|
2025-09-21 23:40:13 +02:00
|
|
|
|
2022-07-09 15:45:19 +02:00
|
|
|
|
2022-07-09 15:49:32 +02:00
|
|
|
##### Images
|
2022-07-09 15:45:19 +02:00
|
|
|
```
|
|
|
|
|
nlss/bbk-cli:latest
|
2025-09-21 23:40:13 +02:00
|
|
|
nlss/bbk-cli:1.2
|
2022-07-09 15:45:19 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
|
|
Image is tagged with software version. Image might be updated whilst version of the bundled software remains the same.
|
|
|
|
|
|
2022-07-09 15:49:32 +02:00
|
|
|
##### Supported platforms
|
2022-07-09 15:45:19 +02:00
|
|
|
- linux/amd64
|
2022-07-09 15:49:32 +02:00
|
|
|
- linux/aarch64
|
|
|
|
|
|
2025-09-21 23:40:13 +02:00
|
|
|
Note: ARM support is questionable and untested.
|
2022-07-09 16:30:56 +02:00
|
|
|
|
2022-07-09 15:49:32 +02:00
|
|
|
##### Running
|
2025-09-21 23:40:13 +02:00
|
|
|
To run bbk cli, use this command:
|
2022-07-09 15:49:32 +02:00
|
|
|
```
|
|
|
|
|
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
|
2025-09-21 23:40:13 +02:00
|
|
|
```
|