From 659223ee0bc23e777921e7006051494b52673bdf Mon Sep 17 00:00:00 2001 From: Bradley Bickford Date: Fri, 26 Sep 2025 21:23:39 -0400 Subject: [PATCH] Adding church-compose.yml --- church-compose.yml | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 church-compose.yml diff --git a/church-compose.yml b/church-compose.yml new file mode 100644 index 0000000..cb863ed --- /dev/null +++ b/church-compose.yml @@ -0,0 +1,40 @@ +version: "3" + +services: + meshcentral: + image: "typhonragewind/meshcentral:latest" + container_name: "meshcentral" + restart: "always" + ports: + - "443:443" + env_file: .meshcentral.env + volumes: + - "/services/meshcentral/data:/opt/meshcentral/meshcentral-data" + - "/services/meshcentral/user_files:/opt/meshcentral/meshcentral-files" + - "/services/backups/meshcentral:/opt/meshcentral/meshcentral-backups" + homeassistant: + image: "ghcr.io/home-assistant/home-assistant:stable" + container_name: "homeassistant" + restart: always + privileged: true + environment: + TZ: "America/New_York" + network_mode: host + volumes: + - "/services/homeassistant/config:/config" + - "/run/dbus:/run/dbus:ro" + omada: + image: "mbentley/omada-controller:5.13.30.8" + container_name: "omadacontroller" + restart: always + ports: + - "8043:8043" + - "8088:8088" + - "27001:27001/udp" + - "27002:27002" + - "29811-29814:29811-29814" + - "8843:8843" + - "29810:29810/udp" + + + \ No newline at end of file