From 6902903a57e1a7969066966d0cba1cac806efffa Mon Sep 17 00:00:00 2001 From: sickprodigy Date: Fri, 21 Nov 2025 19:16:52 -0500 Subject: [PATCH] Add docker-compose configuration for notifiarr service --- notifiarr/docker-compose.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 notifiarr/docker-compose.yml diff --git a/notifiarr/docker-compose.yml b/notifiarr/docker-compose.yml new file mode 100644 index 0000000..103eee8 --- /dev/null +++ b/notifiarr/docker-compose.yml @@ -0,0 +1,19 @@ +version: "2.1" +services: + notifiarr: + container_name: notifiarr + hostname: notifiarr + image: golift/notifiarr + ports: + - "5454:5454" + volumes: + - /docker-containers/notifiarr:/config + - /var/run/utmp:/var/run/utmp + - /etc/machine-id:/etc/machine-id + restart: unless-stopped + networks: + - homelab +networks: # I don't know why but you have to specify the network 2x. In service, and in this tag area.. + homelab: + name: homelab # Networks can also be given a custom name + external: true # This option causes compose to join the above network instead of making a _default one \ No newline at end of file