2026-01-24 22:01:51 +00:00
|
|
|
app:
|
|
|
|
|
id: meshtastic
|
|
|
|
|
name: Meshtastic
|
2026-06-11 00:24:20 -04:00
|
|
|
version: 2-daily-alpine
|
2026-01-24 22:01:51 +00:00
|
|
|
description: Open-source mesh networking for LoRa radios. Create decentralized communication networks.
|
|
|
|
|
|
|
|
|
|
container:
|
2026-06-11 00:24:20 -04:00
|
|
|
image: docker.io/meshtastic/meshtasticd:daily-alpine
|
|
|
|
|
pull_policy: if-not-present
|
2026-01-24 22:01:51 +00:00
|
|
|
|
|
|
|
|
dependencies:
|
|
|
|
|
- storage: 1Gi
|
|
|
|
|
|
|
|
|
|
resources:
|
|
|
|
|
cpu_limit: 1
|
|
|
|
|
memory_limit: 512Mi
|
|
|
|
|
disk_limit: 1Gi
|
|
|
|
|
|
|
|
|
|
security:
|
|
|
|
|
capabilities: [NET_ADMIN, SYS_ADMIN] # Required for LoRa radio access
|
|
|
|
|
readonly_root: false # Needs write access for device management
|
2026-03-11 18:13:28 +00:00
|
|
|
no_new_privileges: true
|
|
|
|
|
user: 1000
|
|
|
|
|
seccomp_profile: default
|
2026-01-24 22:01:51 +00:00
|
|
|
network_policy: host # Requires host network for radio access
|
|
|
|
|
apparmor_profile: meshtastic
|
|
|
|
|
|
|
|
|
|
ports:
|
2026-01-24 23:18:24 +00:00
|
|
|
- host: 4403
|
|
|
|
|
container: 4403
|
2026-06-11 00:24:20 -04:00
|
|
|
protocol: tcp # Meshtastic TCP API
|
2026-01-24 22:01:51 +00:00
|
|
|
|
|
|
|
|
devices:
|
|
|
|
|
- /dev/ttyUSB0 # LoRa radio device (if connected)
|
|
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
|
- type: bind
|
|
|
|
|
source: /var/lib/archipelago/meshtastic
|
2026-06-11 00:24:20 -04:00
|
|
|
target: /var/lib/meshtasticd
|
2026-01-24 22:01:51 +00:00
|
|
|
options: [rw]
|
2026-06-11 00:24:20 -04:00
|
|
|
|
|
|
|
|
files:
|
|
|
|
|
- path: /var/lib/archipelago/meshtastic/config.yaml
|
|
|
|
|
content: |
|
|
|
|
|
General:
|
|
|
|
|
MACAddress: AA:BB:CC:DD:EE:01
|
|
|
|
|
Webserver:
|
|
|
|
|
Port: 4403
|
2026-01-24 22:01:51 +00:00
|
|
|
|
|
|
|
|
environment:
|
|
|
|
|
- MESHTASTIC_PORT=/dev/ttyUSB0
|
|
|
|
|
- MESHTASTIC_SERIAL=true
|
|
|
|
|
|
|
|
|
|
health_check:
|
2026-06-11 00:24:20 -04:00
|
|
|
type: cmd
|
|
|
|
|
endpoint: test -f /var/lib/meshtasticd/config.yaml
|
2026-01-24 22:01:51 +00:00
|
|
|
interval: 30s
|
2026-06-11 00:24:20 -04:00
|
|
|
timeout: 30s
|
|
|
|
|
retries: 5
|
2026-01-24 22:01:51 +00:00
|
|
|
|
|
|
|
|
networking:
|
|
|
|
|
mesh_enabled: true
|
|
|
|
|
local_network_access: true
|
2026-06-11 00:24:20 -04:00
|
|
|
|
|
|
|
|
metadata:
|
|
|
|
|
icon: /assets/img/app-icons/meshcore.svg
|
|
|
|
|
category: networking
|
|
|
|
|
tier: recommended
|
|
|
|
|
repo: https://github.com/meshtastic/firmware
|