Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bfren/busybox
Custom BusyBox builds for Alpine and Debian, built using default BusyBox config and Alpine's patches.
https://github.com/bfren/busybox
busybox debian
Last synced: 15 days ago
JSON representation
Custom BusyBox builds for Alpine and Debian, built using default BusyBox config and Alpine's patches.
- Host: GitHub
- URL: https://github.com/bfren/busybox
- Owner: bfren
- Created: 2022-08-29T21:28:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-06T12:27:41.000Z (about 1 month ago)
- Last Synced: 2024-12-06T13:49:03.919Z (about 1 month ago)
- Topics: busybox, debian
- Language: Shell
- Homepage:
- Size: 136 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# BusyBox
[BusyBox](https://busybox.net) compiled for different Alpine & Debian versions, with default config (Alpine itself excludes certain applets by default).
## Matrix
### Alpine
| BusyBox | 3.15 | 3.16 | 3.17 | 3.18 | 3.19 | 3.20 | 3.21 |
| ----------- | :---------: | :-----------: | :-----------: | :-----------: | :-----------: | :-----------: | :-----------: |
| **1.34.1** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
| **1.36.1** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
| **1.37.0** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |### Debian
| BusyBox | 11 (bullseye) | 12 (bookworm) |
| ----------- | :-----------: | :-----------: |
| **1.34.1** | ✓ | ✓ |
| **1.36.1** | ✓ | ✓ |
| **1.37.0** | ✓ | ✓ |## Usage
You can find live examples in my [Debian Docker image](https://github.com/bfren/docker-debian).
```Dockerfile
# set Debian version
ARG DEBIAN=12.8
ARG VERSION=240913# use tags to load correct version of BusyBox for your Debian version
FROM ghcr.io/bfren/busybox:1.37.0-debian${DEBIAN}-${VERSION} AS busybox# load the same the version of Debian
FROM debian:${DEBIAN}-slim AS build# copy busybox executable to /bin
COPY --from=busybox / /bin# run install
RUN busybox --install# rest of Dockerfile
```