From 653f47f507f74a4f9988f2a462e604ba69de21db Mon Sep 17 00:00:00 2001 From: Pavel Sviderski Date: Fri, 7 Feb 2025 14:53:30 +1000 Subject: [PATCH] add clean up step to quick start --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2200a22a..38f80f2b 100644 --- a/README.md +++ b/README.md @@ -79,8 +79,8 @@ curl -fsS https://get.uncloud.run/install.sh | sh uc machine init root@your-server-ip ``` -3. Create a DNS A record in your domain registrar that points `app.example.com` to your server's IP address. Allow a few - minutes for DNS propagation. +3. Create a DNS A record in your DNS provider (Cloudflare, Namecheap, etc.) that points `app.example.com` to your + server's IP address. Allow a few minutes for DNS propagation. 4. Deploy your app from a Docker image: ```bash @@ -89,6 +89,14 @@ uc run -p app.example.com:8000/https my-app-image That's it! Your app is now running and accessible at https://app.example.com ✨ +5. Clean up when you're done: + +```bash +uc ls +# Copy the service ID from the output and remove it: +uc rm my-app-id +``` + ## ⚙️ How it works Check out the [design document](docs/design.md) to understand Uncloud's design philosophy and goals. Here, let's peek