Skip to content

Commit

Permalink
add bash
Browse files Browse the repository at this point in the history
  • Loading branch information
zimbatm committed Feb 13, 2019
1 parent e97a236 commit 7f8aa1f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -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 |
Expand Down
6 changes: 6 additions & 0 deletions bash/default.nix
@@ -0,0 +1,6 @@
{ buildCLIImage
, bash
}:
buildCLIImage {
drv = bash;
}
1 change: 1 addition & 0 deletions overlay.nix
Expand Up @@ -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 =
Expand Down

0 comments on commit 7f8aa1f

Please sign in to comment.