AI Powered SaaS: Stripe + Auth + Billing + Deploy · درس

النشر على آلة افتراضية سحابية

انشر تطبيقك المحوّل إلى حاويات Docker على مثيل آلة افتراضية لدى موفّر خدمات سحابية تختاره.

الدرس 3 من 412 خطوة

النشر على آلة افتراضية سحابية درس مجاني في AI Powered SaaS: Stripe + Auth + Billing + Deploy على CoddyKit. هذا هو الدرس 3 من أصل 4. يمكنك قراءة الدرس كاملاً أدناه مجاناً — ثم تمرن عليه مباشرة في المتصفح باستخدام محرر أكواد مدمج ومدرس ذكاء اصطناعي متاح 24/7. هذا الدرس جزء من مسار التعلم في AI Powered SaaS: Stripe + Auth + Billing + Deploy، وتقدمك يتزامن عبر الويب وتطبيق CoddyKit. تتضمن دورة AI Powered SaaS: Stripe + Auth + Billing + Deploy 4 دروس في المجموع.

بعض أجزاء هذا الدرس لم تُترجم بعد وتظهر باللغة الإنجليزية.

Deploying to the Cloud

You've containerized your app with Docker. Now, it's time to put it online! This lesson covers deploying your Dockerized application to a cloud Virtual Machine (VM).

A VM acts like a remote computer where your app can run 24/7, accessible to users worldwide.

What's a Virtual Machine?

A Virtual Machine (VM) is a software-based computer that runs on a physical server in a cloud data center. It has its own CPU, memory, storage, and network interface, just like a physical machine.

  • Isolation: Each VM is isolated from others.
  • Flexibility: You choose the operating system (OS) and resources.
  • Persistence: Your app keeps running even if you disconnect.

Choosing Cloud Provider & OS

Major cloud providers offer VMs:

  • AWS EC2: Amazon Elastic Compute Cloud
  • GCP Compute Engine: Google Cloud Platform
  • Azure Virtual Machines: Microsoft Azure

For your Dockerized app, a Linux OS (like Ubuntu or CentOS) is typically the best and most cost-effective choice.

Launching Your Cloud VM

Launching a VM involves a few key steps:

  1. Instance Type: Select CPU/RAM based on app needs.
  2. Region: Choose a geographical location close to your users.
  3. Key Pair: Create a secure SSH key for access.
  4. Security Group/Firewall: Define network rules (e.g., allow SSH, HTTP/S).

These are configured through your cloud provider's console or API.

Connecting via SSH

Once your VM is launched, you'll connect to it using SSH (Secure Shell). This encrypted protocol allows you to execute commands remotely and securely.

You'll use the private key from your key pair to authenticate.

ssh -i /path/to/your-key.pem ubuntu@your-vm-ip

Installing Docker Engine

Your cloud VM starts fresh. The first step is to install Docker Engine, which allows your VM to run Docker containers.

For Ubuntu, you'd update packages, then install Docker. This makes your VM a Docker host!

sudo apt update
sudo apt install docker.io -y
sudo systemctl start docker
sudo systemctl enable docker

Pulling Your App's Image

With Docker installed, you need your application's Docker image on the VM. If you pushed your image to a registry like Docker Hub or a private cloud registry, you can simply pull it.

Replace your-username/your-app:latest with your actual image name.

docker pull your-username/your-app:latest

Launching Your Container

Now, run your container! The -p flag maps a port on your VM (e.g., 80) to a port inside your container (e.g., 3000, where your app listens).

The -d flag runs it in 'detached' mode, so it runs in the background.

docker run -d -p 80:3000 your-username/your-app:latest

Opening Ports (Firewall)

Even if your container is running, users can't reach it unless you open the necessary ports on your VM's firewall (often called 'security groups' in cloud providers).

You'll need to allow inbound traffic on port 80 (for HTTP) and potentially 443 (for HTTPS) from anywhere (0.0.0.0/0).

Checking Your Live App

After running your container and configuring the firewall, you can verify your deployment.

  • SSH: Use docker ps to see running containers.
  • Browser: Navigate to your VM's public IP address or domain name in a web browser.

If you see your app, congratulations!

docker ps

Deployment Check

You've deployed your Dockerized app to a cloud VM. What's the primary tool used to securely connect and manage your remote VM?

Recap: VM Deployment

In this lesson, you learned how to deploy your Dockerized application to a cloud Virtual Machine. We covered selecting a provider, launching an instance, connecting via SSH, installing Docker, pulling and running your image, and configuring network access.

This is a foundational step for making your SaaS application publicly available!

البدء مجانًا

تعلم AI Powered SaaS: Stripe + Auth + Billing + Deploy مع معلم ذكاء اصطناعي — مجانًا

اكتب وقم بتشغيل أكوادك الفعلية في المتصفح، واحصل على مساعدة فورية من معلم ذكاء اصطناعي متاح 24/7، واستمر من حيث توقفت على الويب أو في التطبيق.

الدورات
12
الدروس
48

الأسئلة الشائعة

هل درس «النشر على آلة افتراضية سحابية» مجاني؟

نعم — نص درس «النشر على آلة افتراضية سحابية» كامل متاح مجاناً هنا على الويب. لتمرينه بشكل تفاعلي (محرر أكواد مدمج ومدرس ذكاء اصطناعي متاح 24/7) وفتح باقي دورة AI Powered SaaS: Stripe + Auth + Billing + Deploy، انتقل إلى CoddyKit PRO. تتضمن دورة AI Powered SaaS: Stripe + Auth + Billing + Deploy 4 دروس في المجموع.

ماذا ستتعلم في «النشر على آلة افتراضية سحابية»؟

انشر تطبيقك المحوّل إلى حاويات Docker على مثيل آلة افتراضية لدى موفّر خدمات سحابية تختاره. تتمرن على AI Powered SaaS: Stripe + Auth + Billing + Deploy مع أكواد عملية تشغلها مباشرة في المتصفح، ومدرس ذكاء اصطناعي متاح 24/7 يجيب على أسئلتك أثناء عملك.

هل أحتاج إلى خبرة سابقة لأبدأ AI Powered SaaS: Stripe + Auth + Billing + Deploy؟

لا تُشترط خبرة سابقة. AI Powered SaaS: Stripe + Auth + Billing + Deploy على CoddyKit منظم للمبتدئين حتى المتقدمين، لذا يمكنك البدء من هنا أو من البداية والتقدم بسرعتك الخاصة. هذا هو الدرس 3 من أصل 4.

كم من الوقت يستغرق درس «النشر على آلة افتراضية سحابية»؟

معظم دروس CoddyKit تستغرق حوالي 5–10 دقائق. كل منها موجز وتفاعلي، لذا تحرز تقدماً مستمراً وتستأنف من حيث توقفت عبر الويب والتطبيق.

هل يمكنني كتابة وتشغيل أكواد في درس AI Powered SaaS: Stripe + Auth + Billing + Deploy هذا؟

نعم. كل درس في AI Powered SaaS: Stripe + Auth + Billing + Deploy يتضمن محرر أكواد مدمج، لذا تكتب وتشغل أكواداً حقيقية مباشرة في متصفحك وتحصل على تعليقات فورية من الذكاء الاصطناعي — بدون إعداد محلي.

جميع الدروس في هذه الدورة

  1. تحويل تطبيقك إلى حاويات Docker
  2. مقدمة إلى موفّري الخدمات السحابية
  3. النشر على آلة افتراضية سحابية
  4. تطبيقات متعددة الحاويات باستخدام Docker Compose
← العودة إلى AI Powered SaaS: Stripe + Auth + Billing + Deploy