meshcore_multitcp/docker-compose.yml
2026-04-12 18:50:08 +02:00

18 lines
606 B
YAML

services:
meshcore-multitcp:
image: ghcr.io/luk-ada/meshcore_multitcp:latest
pull_refresh_after: 12h
# -d meshcore device IP and port
# -s/-f use 0.0.0.0 and specific port to listen for server connections
# -sql enable SQL database for device info and stats
command: >
-d 192.168.0.21:5000
-s 0.0.0.0:5010
-f 0.0.0.0:5011
-sql
ports:
- "10.100.100.10:5010:5010" # for multi IP support, bind to specific IP
- "5011:5011" # bind to all interfaces for forwarding
volumes:
- ./data:/data
restart: unless-stopped