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 +}