yuki: add twitch point miner

This commit is contained in:
notohh 2024-05-26 16:43:29 -04:00
parent 6b91be3313
commit 59b1056075
Signed by: notohh
GPG key ID: BD47506D475EE86D
2 changed files with 14 additions and 0 deletions

View file

@ -11,5 +11,6 @@
./anki-sync-server.nix
./paperless.nix
./hydroxide.nix
./twitch-miner.nix
];
}

View file

@ -0,0 +1,13 @@
_: {
virtualisation.oci-containers.containers.twitch-miner = {
image = "rdavidoff/twitch-channel-points-miner-v2@sha256:a344037ff4180fccc909ca398cc180a840ffd89f6af121789a58764a86769e58";
hostname = "twitch-miner";
volumes = [
"/home/notoh/twitch-miner/analytics:/usr/src/app/analytics"
"/home/notoh/twitch-miner/cookies:/usr/src/app/cookie"
"/home/notoh/twitch-miner/logs:/usr/src/app/logs"
"/home/notoh/twitch-miner/run.py:/usr/src/app/run.py:ro"
];
ports = ["5000:5000"];
};
}