GibilGibil

gibil ssh

Open an interactive SSH session to a running server

Drop into a full interactive terminal on your server. You're root, Docker is ready, your repo is at /root/project.

Usage

gibil ssh <name>

Example

gibil ssh my-app

# You're on the VM now
cd /root/project
pnpm install
pnpm test          # debug the failure
vim src/fix.ts     # make changes
pnpm test          # verify
exit

What you'll find on the VM

PathContents
/root/project/Your cloned repo
/root/.gibil-readyExists when infra setup is complete
/root/.gibil-tasks-doneExists when all tasks passed
/var/log/cloud-init-output.logFull setup log

You connect as root — full access, no sudo needed. The SSH key is at ~/.gibil/keys/<name>/id_ed25519.

Next steps

On this page