From 35044e64de1ca98d00d83e570c2522cadc70d430 Mon Sep 17 00:00:00 2001 From: Matt Date: Thu, 10 Apr 2025 22:57:51 -0400 Subject: [PATCH] update for our setup --- docker-compose.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 85d17e6..aa9424b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,28 +1,23 @@ services: - # listens to mqtt packets and saves to database meshtastic-mqtt: container_name: meshtastic-mqtt + image: git.arinity.org/ctmesh/map:latest depends_on: database: condition: service_healthy - build: - context: . - dockerfile: ./Dockerfile command: /app/docker/mqtt.sh environment: DATABASE_URL: "mysql://root:password@database:3306/meshtastic-map?connection_limit=100" - MQTT_OPTS: "" # add any custom mqtt.js options here + MQTT_OPTS: "--mqtt-broker-url=" # add any custom mqtt.js options here # runs the web map ui meshtastic-map: container_name: meshtastic-map + image: git.arinity.org/ctmesh/map:latest depends_on: database: condition: service_healthy - build: - context: . - dockerfile: ./Dockerfile command: /app/docker/map.sh ports: - 8080:8080/tcp