You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/deploying/deploy-cloud.md
+12-16Lines changed: 12 additions & 16 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ slug: /deploying/cloud
6
6
7
7
# Deploy to Cloud
8
8
9
-
Deploy Fleetbase on any cloud provider using Docker containers. This guide provides step-by-step instructions for deploying Fleetbase on popular cloud platforms including AWS, Google Cloud Platform, Microsoft Azure, DigitalOcean, and others.
9
+
Deploy Fleetbase on any cloud provider using Docker containers. This guide provides step-by-step instructions for deploying Fleetbase on popular cloud platforms including DigitalOcean, Google Cloud Platform, Microsoft Azure, Linode, and others.
10
10
11
11
## Overview
12
12
@@ -35,30 +35,26 @@ Before starting the deployment, ensure you have:
35
35
-**SSL Certificates**: For HTTPS (Let's Encrypt recommended)
36
36
37
37
### External Services (Optional)
38
-
-**Email Service**: AWS SES, SendGrid, Mailgun, or SMTP server
38
+
-**Email Service**: SendGrid, Mailgun, Postmark, or SMTP server
39
39
-**SMS Service**: Twilio account for SMS notifications
Copy file name to clipboardExpand all lines: docs/deploying/deploy-on-premise.md
+24-3Lines changed: 24 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,11 +6,32 @@ slug: /deploying/on-premise
6
6
7
7
# Deploy on Premise
8
8
9
-
Deploy Fleetbase on your own infrastructure with complete control over your data and environment. This guide covers both Docker-based and native installations for on-premise deployments.
9
+
Deploy Fleetbase on your own infrastructure with complete control over your data and environment. This guide covers both CLI-based installation and manual Docker setup for on-premise deployments.
10
10
11
-
## Overview
11
+
## Recommended: CLI Installation
12
12
13
-
On-premise deployment gives you full control over your Fleetbase installation, ensuring data sovereignty, compliance with internal policies, and customization capabilities. This guide covers:
13
+
The easiest way to deploy Fleetbase on-premise is using the Fleetbase CLI:
14
+
15
+
```bash
16
+
npm install -g @fleetbase/cli
17
+
flb install-fleetbase --host 0.0.0.0 --environment production
18
+
```
19
+
20
+
This method:
21
+
- Automatically configures Docker containers
22
+
- Sets up production-ready environment variables
23
+
- Initializes all required services
24
+
- Takes approximately 5 minutes
25
+
26
+
For detailed instructions, see the [CLI Installation Guide](/getting-started/install/with-cli).
27
+
28
+
## Advanced: Manual Docker Setup
29
+
30
+
For users who need full control over the deployment process, follow the manual Docker setup below.
31
+
32
+
### Overview
33
+
34
+
Manual on-premise deployment gives you complete control over your Fleetbase installation, ensuring data sovereignty, compliance with internal policies, and customization capabilities. This guide covers:
14
35
15
36
-**Docker Deployment**: Containerized setup for easy management
16
37
-**Native Installation**: Direct installation on the host system
0 commit comments