mirror of
https://github.com/psviderski/uncloud.git
synced 2026-08-26 11:03:34 +00:00
add clean up step to quick start
This commit is contained in:
@@ -79,8 +79,8 @@ curl -fsS https://get.uncloud.run/install.sh | sh
|
|||||||
uc machine init root@your-server-ip
|
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
|
3. Create a DNS A record in your DNS provider (Cloudflare, Namecheap, etc.) that points `app.example.com` to your
|
||||||
minutes for DNS propagation.
|
server's IP address. Allow a few minutes for DNS propagation.
|
||||||
4. Deploy your app from a Docker image:
|
4. Deploy your app from a Docker image:
|
||||||
|
|
||||||
```bash
|
```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 ✨
|
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
|
## ⚙️ How it works
|
||||||
|
|
||||||
Check out the [design document](docs/design.md) to understand Uncloud's design philosophy and goals. Here, let's peek
|
Check out the [design document](docs/design.md) to understand Uncloud's design philosophy and goals. Here, let's peek
|
||||||
|
|||||||
Reference in New Issue
Block a user