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: 27 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 (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-13T14:23:39.000Z (about 2 months ago)
- Last Synced: 2024-09-14T21:55:01.788Z (about 2 months ago)
- Topics: busybox, debian
- Language: Shell
- Homepage:
- Size: 111 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 |
| ----------- | :---------: | :-----------: | :-----------: | :-----------: | :-----------: | :-----------: |
| **1.34.1** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
| **1.36.1** | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |### Debian
| BusyBox | 10 (buster) | 11 (bullseye) | 12 (bookworm) |
| ----------- | :---------: | :-----------: | :-----------: |
| **1.34.1** | ✓ | ✓ | ✓ |
| **1.36.1** | ✓ | ✓ | ✓ |## Usage
You can find live examples in my [Debian Docker image](https://github.com/bfren/docker-debian).
```Dockerfile
# set Debian version
ARG DEBIAN=12.7# use tags to load correct version of BusyBox for your Debian version
FROM ghcr.io/bfren/busybox:1.36.1-debian${DEBIAN} 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
```