sp remove

Disable a service and optionally preserve its data.

Usage

bash
sp remove <service>
sp remove <service> --keep-data

Options

FlagDescription
--keep-dataStops and removes the container but preserves the database and volume data

Examples

bash
# Remove Adminer entirely (no data to keep)
sp remove adminer

# Remove Cal.com but keep its database
sp remove calcom --keep-data

# Remove n8n and its PostgreSQL data
sp remove n8n
Without --keep-data, the service's database and all associated data are permanently deleted. This cannot be undone. Always run sp export before removing a service if you may want the data later.

Re-adding a service after removal

You can add a service back at any time with sp add <service>. If you used--keep-data, the previous data will be reconnected automatically.