Commands
Dockup CLI commands reference
dockup init
Initialize Dockup in the current directory by installing the dockup package and create dockup.config.ts
file.
dockup init
dockup add
Add new service(s) to your configuration. The command will add the service(s) to your dockup.config.ts
file.
dockup add # Will prompt you the list of available services in the registry
dockup add <service> # Will add a specific service
dockup up
Starts the services and the Terminal UI.
dockup up
dockup # You can also just use this
dockup connect
Connects to a service shell.
dockup connect <service>
dockup metadata
Prints your services metadata like connection URLs, dashboard endpoints, credentials, etc.
dockup metadata
dockup rm
Remove services by destroying the containers and their volumes.
This will remove any persisted data.
dockup rm # Remove all services
dockup rm <service> # Remove a specific service