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