mirror of
https://github.com/guggero/chantools.git
synced 2026-08-13 12:33:34 +02:00
This commit adds a Dockerfile and wrapper script that allows a chantool image to be used as an Umbrel app for easy use by non-technical users. The "app" only spins up a background container that can be executed into and run CLI commands manually. The entrypoint and bash wrapper scripts are only there to give guidance and improve UX.
17 lines
711 B
Bash
Executable file
17 lines
711 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "Welcome to the chantools command line interface."
|
|
echo "Type 'chantools --help' (without quotes) to see available commands."
|
|
echo ""
|
|
echo "You might also want to visit https://www.node-recovery.com/chantools/"
|
|
echo "for the reference documentation and an interactive tool that helps you"
|
|
echo "build the command you might want to run."
|
|
echo ""
|
|
echo "Also, keep in mind that you don't have to run chantools inside this"
|
|
echo "container. You can also install it directly on any machine you want,"
|
|
echo "since there is no direct interaction with your Lightning node required"
|
|
echo "and for most command you don't even need anything other than your seed"
|
|
echo "phrase."
|
|
echo ""
|
|
|
|
exec /bin/bash
|