mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-24 16:51:54 -05:00
added oci plex, audiobookshelf, and transmission oci containers to homelab config
This commit is contained in:
parent
208cc4cb4f
commit
4de8c1c12a
|
@ -1,4 +1,37 @@
|
|||
{ pkgs, ... }:
|
||||
{ config, pkgs, ... }:
|
||||
{
|
||||
# Open TCP ports for audiobookshelf, plex-server, and transmission-server.
|
||||
networking.firewall.allowedTCPPorts = [ 13378 32400 9091 ];
|
||||
virtualisation = {
|
||||
podman = {
|
||||
enable = true;
|
||||
|
||||
# Create a `docker` alias for podman, to use it as a drop-in replacement
|
||||
dockerCompat = true;
|
||||
|
||||
# Required for containers under podman-compose to be able to talk to each other.
|
||||
defaultNetwork.settings.dns_enabled = true;
|
||||
};
|
||||
oci-containers = {
|
||||
backend = "podman";
|
||||
};
|
||||
|
||||
oci-containers.containers = {
|
||||
audiobookshelf = {
|
||||
ports = ["0.0.0.0:13378:80"];
|
||||
image = "ghcr.io/advplyr/audiobookshelf:latest";
|
||||
};
|
||||
plex-server = {
|
||||
ports = ["0.0.0.0:32400:32400"];
|
||||
image = "plexinc/pms-docker:public";
|
||||
};
|
||||
transmission-server = {
|
||||
ports = ["0.0.0.0:9091:9091"];
|
||||
image = "linuxserver/transmission:latest";
|
||||
# volumes = [
|
||||
# "/home/aly/transmission:/config"
|
||||
# ];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue