CLI
penny dokku
Dokku integration commands
Penny integrates with Dokku to manage Dokku apps on demand.
Usage
The penny dokku command generates a penny.toml configuration from your Dokku apps:
penny dokku generate [OPTIONS]This inspects your Dokku apps and creates the appropriate configuration with docker start / docker stop commands.
Integration with Dokku
When using Penny with Dokku, apps use the table form of the command field for graceful container management:
["myapp.example.com".command]
start = "docker start myapp.web.1"
end = "docker stop myapp.web.1"This ensures Dokku containers are properly started and stopped rather than being killed.
See Also
- Start and Stop Commands for the table command format
- Dokku Deployment for a full deployment walkthrough