mirror of
https://github.com/Monadical-SAS/cubbi.git
synced 2025-12-21 04:39:07 +00:00
17 lines
415 B
Bash
Executable File
17 lines
415 B
Bash
Executable File
#!/bin/bash
|
|
# Entrypoint script for Goose driver
|
|
|
|
# Run the standard initialization script
|
|
/mai-init.sh
|
|
|
|
# Start SSH server in the background
|
|
/usr/sbin/sshd
|
|
|
|
# Print welcome message
|
|
echo "==============================================="
|
|
echo "Goose driver container started"
|
|
echo "SSH server running on port 22"
|
|
echo "==============================================="
|
|
|
|
# Keep container running
|
|
exec tail -f /dev/null |