archy/apps/meshtastic/manifest.yml

70 lines
1.6 KiB
YAML
Raw Normal View History

2026-01-24 22:01:51 +00:00
app:
id: meshtastic
name: Meshtastic
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:
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
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
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
target: /var/lib/meshtasticd
2026-01-24 22:01:51 +00:00
options: [rw]
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:
type: cmd
endpoint: test -f /var/lib/meshtasticd/config.yaml
2026-01-24 22:01:51 +00:00
interval: 30s
timeout: 30s
retries: 5
2026-01-24 22:01:51 +00:00
networking:
mesh_enabled: true
local_network_access: true
metadata:
icon: /assets/img/app-icons/meshcore.svg
category: networking
tier: recommended
repo: https://github.com/meshtastic/firmware