mirror of
https://github.com/nix-community/docker-nixpkgs.git
synced 2026-01-11 20:30:37 -05:00
add bash
This commit is contained in:
@@ -33,6 +33,7 @@ $ docker run -ti --rm nixpkgs/curl http://ifconfig.co
|
|||||||
|
|
||||||
| Image | Description |
|
| Image | Description |
|
||||||
| --- | --- |
|
| --- | --- |
|
||||||
|
| bash | CLI only |
|
||||||
| curl | CLI only |
|
| curl | CLI only |
|
||||||
| docker-compose | CLI only |
|
| docker-compose | CLI only |
|
||||||
| kubectl | 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 images must be lower-cased
|
||||||
docker-nixpkgs = rec {
|
docker-nixpkgs = rec {
|
||||||
|
|
||||||
|
bash = pkgs.callPackage ./bash {};
|
||||||
curl = pkgs.callPackage ./curl {};
|
curl = pkgs.callPackage ./curl {};
|
||||||
docker-compose = pkgs.callPackage ./docker-compose {
|
docker-compose = pkgs.callPackage ./docker-compose {
|
||||||
docker-compose =
|
docker-compose =
|
||||||
|
|||||||
Reference in New Issue
Block a user