Tighten up docker compose and docs

This commit is contained in:
jkingsman
2026-02-22 14:02:11 -08:00
parent fd0f901546
commit 9193d113fe
2 changed files with 16 additions and 17 deletions
+10 -13
View File
@@ -7,24 +7,21 @@ services:
- "8000:8000"
volumes:
- ./data:/app/data
environment:
# Radio connection — set ONE of the following transport options:
################################################
# Set your serial device for passthrough here! #
################################################
devices:
- /dev/ttyUSB0:/dev/ttyUSB0
# Serial (USB) — also uncomment the `devices` section below
environment:
MESHCORE_DATABASE_PATH: data/meshcore.db
# Radio connection -- optional if you map just a single serial device above, as the app will autodetect
# Serial (USB)
# MESHCORE_SERIAL_PORT: /dev/ttyUSB0
# MESHCORE_SERIAL_BAUDRATE: 115200
# TCP
# MESHCORE_TCP_HOST: 192.168.1.100
# MESHCORE_TCP_PORT: 4000
# BLE
# MESHCORE_BLE_ADDRESS: AA:BB:CC:DD:EE:FF
# MESHCORE_BLE_PIN: ""
MESHCORE_LOG_LEVEL: INFO
MESHCORE_DATABASE_PATH: data/meshcore.db
# Uncomment to pass through a USB serial device:
# devices:
# - /dev/ttyUSB0:/dev/ttyUSB0
restart: unless-stopped