Quickstart
Deploy your first cage in under 5 minutes.
1. Sign up
Create an account at app.lobstercage.ai .
2. Install the CLI
npm install -g lobstercage-cli3. Log in
lobster loginThis opens your browser to authenticate. Once confirmed, you’re ready to go.
4. Deploy a cage
lobster deploy my-first-cageThis creates and starts an isolated container. You’ll see progress output as the cage provisions.
5. Connect via SSH
lobster ssh my-first-cageYou’re now inside your cage. It’s a full Linux environment with persistent storage at /workspace.
6. Set environment variables
lobster env set my-first-cage BOT_TOKEN=your-token-here
lobster env set my-first-cage API_KEY=sk-1234Environment variables are encrypted at rest with KMS envelope encryption.
7. Manage the lifecycle
# Stop the cage (preserves data)
lobster stop my-first-cage
# Start it again
lobster start my-first-cage
# Hibernate (stops compute, keeps storage)
lobster hibernate my-first-cage
# Wake from hibernation
lobster wake my-first-cage
# Destroy the cage permanently
lobster destroy my-first-cageNext steps
- Learn about cage sizes and configuration
- Set up webhooks for Telegram, Slack, or Discord
- Explore the full CLI reference
- Understand billing and credits