TC²-BBS Meshtastic Version in Docker
10K+
This Docker image provides the TC²-BBS system integrated with Meshtastic devices. The system allows for message handling, bulletin boards, mail systems, and a channel directory.
You can view the source code for this project on GitHub: TheCommsChannel/TC2-BBS-mesh
Below is an example of how to set up the TC²-BBS Mesh system using Docker Compose:
services:
tc2-bbs-mesh:
image: thealhu/tc2-bbs-mesh:latest
restart: always
volumes:
- ./config:/config
container_name: tc2-bbs-mesh
# -- These parameters are optional and can be uncommented if needed. --
# devices:
# - /dev/ttyUSB0:/dev/ttyUSB0
# - /dev/ttyACM0:/dev/ttyACM0
Below is an example of how to set up the TC²-BBS Mesh system using a docker run command:
docker run -d \
--name tc2-bbs-mesh \
--restart always \
-v $(pwd)/config:/config \
thealhu/tc2-bbs-mesh:latest
If you need to include device parameters, you can add them to the docker run command as follows:
docker run -d \
--name tc2-bbs-mesh \
--restart always \
-v $(pwd)/config:/config \
--device /dev/ttyUSB0:/dev/ttyUSB0 \
--device /dev/ttyACM0:/dev/ttyACM0 \
thealhu/tc2-bbs-mesh:latest
The TC²-BBS system integrates with Meshtastic devices to provide various features such as a mail system, bulletin boards, and a channel directory.
fortunes.txt file. Feel free to edit this file to remove or add more if you like.Content type
Image
Digest
sha256:c96b8d602…
Size
21.4 MB
Last updated
8 months ago
docker pull thealhu/tc2-bbs-mesh