Compare commits

..

No commits in common. "dda4d57199c9c4dfafe5eb4a525e8dc7bae6f7df" and "e3785a1e32ffb185f36d5c42b3b646cb2e6a25c1" have entirely different histories.

2 changed files with 18 additions and 20 deletions

View file

@ -4,7 +4,7 @@
podman.enable = true;
oci-containers.containers = {
qbittorrent = {
image = "lscr.io/linuxserver/qbittorrent:latest";
image = "lscr.io/linuxserver/qbittorrent";
volumes = [
"qbittorrent-config:/config"
"/video-data/torrent:/data/torrent"

View file

@ -5,24 +5,23 @@
podman.enable = true;
oci-containers.containers = {
zwave-js-ui = {
image = "zwavejs/zwave-js-ui:latest";
# image = "my-zwave-js-ui:latest";
# imageFile = pkgs.dockerTools.buildLayeredImage {
# name = "my-zwave-js-ui";
# tag = "latest";
# contents = [
# pkgs.cacert
# pkgs.busybox
# ];
# config = {
# Cmd = [ "${inputs.self.packages.${pkgs.stdenv.system}.zwave-js-ui}/bin/zwave-js-ui" ];
# Env = [
# "STORE_DIR=/usr/src/app/store"
# "ZWAVEJS_EXTERNAL_CONFIG=/usr/src/app/store/.config-db"
# "SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"
# ];
# };
# };
image = "my-zwave-js-ui:latest";
imageFile = pkgs.dockerTools.buildLayeredImage {
name = "my-zwave-js-ui";
tag = "latest";
contents = [
pkgs.cacert
pkgs.busybox
];
config = {
Cmd = [ "${inputs.self.packages.${pkgs.stdenv.system}.zwave-js-ui}/bin/zwave-js-ui" ];
Env = [
"STORE_DIR=/usr/src/app/store"
"ZWAVEJS_EXTERNAL_CONFIG=/usr/src/app/store/.config-db"
"SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"
];
};
};
volumes = [ "zwave-config:/usr/src/app/store" ];
environment = {
TZ = "America/New_York";
@ -34,7 +33,6 @@
};
extraOptions = [
"--network=www"
"--pull=newer"
"--device=/dev/ttyACM0:/dev/zwave"
];
};