File entrypoint.sh of Package irssi
#!/bin/bash # Exit immediately if any command exits with a non-zero status code set -e # Start a new tmux session with the name "irssi" and run the "irssi" command inside it tmux new-session -d -s irssi irssi # Keep the container running tail -f /dev/null