From b9d1e3ad194a00a8c8e1b8dd6f646c7f05b2aafa Mon Sep 17 00:00:00 2001 From: zimbatm Date: Tue, 25 Jun 2019 13:44:15 +0200 Subject: [PATCH] couchpotato: new package --- README.md | 1 + images/couchpotato/default.nix | 14 ++++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 images/couchpotato/default.nix diff --git a/README.md b/README.md index 8e83f1e..a3428e5 100644 --- a/README.md +++ b/README.md @@ -37,6 +37,7 @@ Here is the current list of images that are provided. Missing one? Send an | Image | Description | | --- | --- | | bash | CLI only | +| couchpotato | CLI only | | busybox | CLI only | | curl | CLI only | | docker-compose | CLI only | diff --git a/images/couchpotato/default.nix b/images/couchpotato/default.nix new file mode 100644 index 0000000..715aba7 --- /dev/null +++ b/images/couchpotato/default.nix @@ -0,0 +1,14 @@ +{ buildCLIImage +, couchpotato +}: +buildCLIImage { + drv = couchpotato; + + # TODO: expose 5050 + + # TODO: create /couchpotato.sh entry-point + + # TODO: run as non-root user + + # TODO: /data volume +}