crosstalk/docker-compose.yml
Macgyver Official 953ea693f4 Rename project to Crosstalk and update branding
Rename Reticulum MeshChat to Crosstalk across the codebase and packaging. Renamed meshchat.py to crosstalk.py and updated Dockerfile, docker-compose, GitHub Actions, README, docs and electron assets to use Crosstalk, new storage/reticulum config paths (~/.crosstalk/.reticulum), and GHCR tags/labels. Add logic to seed a default RMAP World TCP client interface and a config flag, shorten interface/transport responses to remove forced restart messages, and update database proxy comment. Electron: set app name, implement an internal prompt (replacing electron-prompt), expose restart-backend IPC, change backend executable naming/launching (startBackend/start/stop handling), and adjust portable storage behavior. Misc: remove donate.md, add example image and egg-info files, and apply multiple frontend/component and static asset updates to match rebrand and UX improvements.
2026-06-21 07:43:38 -04:00

17 lines
471 B
YAML

services:
crosstalk:
container_name: crosstalk
image: ghcr.io/buildwithparallel/crosstalk:latest
pull_policy: always
restart: unless-stopped
# Make the crosstalk web interface accessible from the host on port 8000
ports:
- 0.0.0.0:8000:8000
volumes:
- crosstalk-config:/config
# Uncomment if you have a USB device connected, such as an RNode
# devices:
# - /dev/ttyUSB0:/dev/ttyUSB0
volumes:
crosstalk-config: