add busybox
This commit is contained in:
parent
7f8aa1fa25
commit
16e635f8e1
3 changed files with 8 additions and 0 deletions
|
@ -34,6 +34,7 @@ $ docker run -ti --rm nixpkgs/curl http://ifconfig.co
|
|||
| Image | Description |
|
||||
| --- | --- |
|
||||
| bash | CLI only |
|
||||
| busybox | CLI only |
|
||||
| curl | CLI only |
|
||||
| docker-compose | CLI only |
|
||||
| kubectl | CLI only |
|
||||
|
|
6
busybox/default.nix
Normal file
6
busybox/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{ buildCLIImage
|
||||
, busybox
|
||||
}:
|
||||
buildCLIImage {
|
||||
drv = busybox;
|
||||
}
|
|
@ -6,6 +6,7 @@ _: pkgs: {
|
|||
docker-nixpkgs = rec {
|
||||
|
||||
bash = pkgs.callPackage ./bash {};
|
||||
busybox = pkgs.callPackage ./busybox {};
|
||||
curl = pkgs.callPackage ./curl {};
|
||||
docker-compose = pkgs.callPackage ./docker-compose {
|
||||
docker-compose =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue