This repository has been archived on 2023-07-23. You can view files and clone it, but cannot push or open issues or pull requests.
gpd-configurations/global/containers.nix

26 lines
630 B
Nix
Raw Permalink Normal View History

2023-07-13 06:08:09 +00:00
{
virtualisation = {
podman.enable = true;
oci-containers.backend = "podman";
2023-07-13 06:25:26 +00:00
2023-07-13 06:08:09 +00:00
oci-containers.containers = {
wsproxy = {
login.username = "senseab";
login.registry = "ghcr.io";
login.passwordFile = "/var/lib/secrets/podman/ghcr.io"; # should create it manually.
image = "ghcr.io/senseab/wsproxy:master";
autoStart = true;
environment = {
CONFIG_NO_TLS_VERIFY = "true";
CONFIG_ADDR = "wss://dev.wetofu.me/path";
WSPROXY_MODE = "client";
};
ports = [
"127.0.0.1:1089:1089"
];
};
};
};
}