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.
6 lines
184 B
Bash
Executable file
6 lines
184 B
Bash
Executable file
#!/bin/bash
|
|
|
|
echo "Starting background shell, this container doesn't do anything on its own."
|
|
echo "You can connect to it using: docker exec -it <container_name> bash"
|
|
|
|
sleep infinity
|