2022-07-30 22:36:06 +00:00
|
|
|
let
|
2022-07-31 13:10:28 +00:00
|
|
|
secret = import ../../secret/container/webserver;
|
2022-07-31 10:41:00 +00:00
|
|
|
custom-config = import ./config.nix { inherit secret; };
|
2022-07-30 22:36:06 +00:00
|
|
|
in
|
|
|
|
{
|
|
|
|
virtualisation.arion.projects.webserver.settings = {
|
|
|
|
services = {
|
2022-11-27 16:59:57 +00:00
|
|
|
mosquitto = {
|
2022-11-19 17:02:18 +00:00
|
|
|
service = {
|
2022-11-27 16:59:57 +00:00
|
|
|
image = "eclipse-mosquitto:2";
|
|
|
|
container_name = "mosquitto";
|
2022-11-19 17:02:18 +00:00
|
|
|
restart = "unless-stopped";
|
2022-11-27 16:59:57 +00:00
|
|
|
ports = [ "1883:1883" ];
|
|
|
|
user = "nobody";
|
|
|
|
volumes = [
|
|
|
|
"/etc/container-webserver/mosquitto:/mosquitto/config:ro"
|
|
|
|
];
|
2022-11-19 17:02:18 +00:00
|
|
|
labels = {
|
|
|
|
"com.centurylinklabs.watchtower.enable" = "true";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-07-31 14:40:01 +00:00
|
|
|
weewx = {
|
|
|
|
service = {
|
|
|
|
image = "ghcr.io/nifoc/weewx-docker:master";
|
2022-11-19 18:09:40 +00:00
|
|
|
container_name = "weewx";
|
2022-08-02 19:05:58 +00:00
|
|
|
restart = "unless-stopped";
|
2022-11-27 16:51:03 +00:00
|
|
|
depends_on = [ "mosquitto" ];
|
2022-12-26 16:53:21 +00:00
|
|
|
ports = [ "127.0.0.1:8000:8000" ];
|
2022-07-31 14:40:01 +00:00
|
|
|
environment = {
|
|
|
|
"TZ" = "Europe/Berlin";
|
|
|
|
};
|
|
|
|
volumes = [
|
|
|
|
"/etc/container-webserver/weewx:/data"
|
|
|
|
];
|
2023-01-22 12:47:36 +00:00
|
|
|
inherit (secret.container.webserver.weewx) labels;
|
|
|
|
};
|
|
|
|
};
|
2022-07-30 22:36:06 +00:00
|
|
|
};
|
|
|
|
};
|
2022-07-31 10:34:06 +00:00
|
|
|
} // custom-config
|