built calibre-web

This commit is contained in:
Chris Dombroski 2024-10-02 14:58:27 -04:00
parent a99b62067d
commit ff6a43ebde

View file

@ -1,16 +1,35 @@
{ pkgs, ... }:
{
virtualisation = {
containers.enable = true;
podman.enable = true;
oci-containers.containers = {
calibre-web = {
image = "lscr.io/linuxserver/calibre-web:latest";
image = "my-calibre-web:latest";
imageFile = pkgs.dockerTools.buildLayeredImage {
name = "my-calibre-web";
tag = "latest";
contents = [ pkgs.busybox ];
config.Cmd = [
"${pkgs.calibre-web}/bin/calibre-web"
"-p"
"/config/app.db"
"-g"
"/config/gdrive.db"
"-i"
"::"
];
};
volumes = [
"calibre-web-config:/config"
"/video-data:/data"
];
environment.TZ = "America/New_York";
labels.swag = "enable";
labels = {
swag = "enable";
swag_url = "calibre-web.icanttype.org";
swag_port = "8083";
};
extraOptions = [
"--pull=newer"
"--network=www"