On this page

Managing Services

After creating a service, you can control its state directly from the dashboard. This page explains the available operations and what happens with each one.

Starting a service

If a service is stopped, you can start it by clicking Start on the service page. Guara Cloud will recreate the container with the last deployed image and the current configuration.

Stopping a service

When you stop a service, the container is terminated and the service URL stops responding. Resources (CPU and memory) are released.

To stop a service:

  1. Go to the service page in the dashboard
  2. Click Stop
  3. Confirm the action

Stopping a service does not delete your data. Environment variables, deployment history, persistent volumes, and configurations are preserved. You can restart the service at any time.

Restarting a service

Restarting a service terminates the current container and creates a new one with the same configuration. This is useful for:

  • Applying changes that require a restart
  • Resolving temporary issues
  • Clearing in-memory state

If the service has multiple replicas, the restart is performed gradually (rolling restart). Each replica is restarted one at a time, ensuring the service remains available throughout the process.

Deleting a service

To delete a service:

  1. Go to the service page in the dashboard
  2. Click Settings
  3. In the Danger Zone section, click Delete Service
  4. Confirm by typing the service name

When you delete a service:

  • The container is terminated immediately
  • All deployments and build history are removed
  • Persistent volumes are deleted
  • The default subdomain is released
  • Custom domains are unlinked

Renaming a service

You can change a service’s display name in the settings. However, the default subdomain does not change after renaming. The subdomain is set at creation time and remains the same for the service’s entire lifetime.

For example, if you created a service named api and later renamed it to backend, the default URL will still be api-your-project.guaracloud.com.

Operations summary

OperationEffectReversible?
StartRecreates the container and brings the service onlineYes
StopTerminates the container and releases resourcesYes
RestartTerminates and recreates the container (rolling if replicas)Yes
DeletePermanently removes everythingNo
RenameChanges display name (URL does not change)Yes