Spaces:
Paused
Paused
File size: 219 Bytes
08b6464 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | #!/bin/sh
set -e
PORT="${WEBSSH_PORT:-8002}"
exec ttyd \
--port "$PORT" \
--interface 127.0.0.1 \
--writable \
--max-clients 10 \
--ping-interval 30 \
--terminal-type xterm-256color \
bash
|