Browse Source

Minor edits

master
Fred Dixon 4 years ago
parent
commit
eec7cb8b90
1 changed files with 7 additions and 31 deletions
  1. 7
    31
      README.md

+ 7
- 31
README.md View File

1
 # scalelite-run
1
 # scalelite-run
2
 
2
 
3
-This document provides instructions on how to deploy scalelite behind a nginx proxy
4
-using docker-compose.
3
+This document provides instructions on how to quickly [Scalelite](https://github.com/blindsidenetworks/scalelite), a stateful BigBlueButton load balancer, using docker-compose.
5
 
4
 
6
 This can be performed as an [All-In-One-Box Deployment](#all-in-one-box-deployment) or making use of distributed services in the cloud (or virtual private cloud) through a cloud computing provider as a [Distributed Deployment](#distributed-deployment).
5
 This can be performed as an [All-In-One-Box Deployment](#all-in-one-box-deployment) or making use of distributed services in the cloud (or virtual private cloud) through a cloud computing provider as a [Distributed Deployment](#distributed-deployment).
7
 
6
 
9
 
8
 
10
 ## Prerequisites
9
 ## Prerequisites
11
 
10
 
12
-- Install
13
-[docker](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-18-04)
14
-  and
15
-[docker-compose](https://www.digitalocean.com/community/tutorials/how-to-install-docker-compose-on-ubuntu-18-04)
11
+Scalelite requires a server with 4 CPU cores and 8 Gig of memory.  Since all the component run under docker, the underlying OS need only support docker and docker-compose.
16
 
12
 
17
-- Make sure you have access to Blindside Networks repositories in
18
-  [dockerhub](https://cloud.docker.com/u/blindsidenetwks/repository/list) (particularly to [scalelite](https://cloud.docker.com/u/blindsidenetwks/repository/docker/blindsidenetwks/scalelite)).
13
+These steps were written for an Ubuntu 18.04 machine. It is assumed that your machine has the same (or a compatible version).  
19
 
14
 
20
-- Make sure you have your own public domain name (e.g. blindside-dev.com) or a delegated one (e.g. <JOHN>.blindside-dev.com) and have access to manage it through a DNS.
15
+You need to have a fully qualified domain name (FQDN) for the Scalelite server, such as bbb-lb.example.com, that resolves to the public IP address of the server.  
21
 
16
 
22
-<a name="preparation"/>
17
+To setup the server, first install both [docker](https://www.digitalocean.com/community/tutorials/how-to-install-and-use-docker-on-ubuntu-18-04) and [docker-compose](https://www.digitalocean.com/community/tutorials/how-to-install-docker-compose-on-ubuntu-18-04).
23
 
18
 
24
-## Preparation
25
-
26
-These steps were written for an Ubuntu 18.04 machine. It is assumed that your machine has the same (or a compatible version).
27
-
28
-<a name="accessing-dockerhub"/>
29
-
30
-### 1. Accessing DockerHub
31
-
32
-If you have to have access to dockerhub private repositories sign in into docker hub with your account
33
-with `docker login` any type your username and password using the stdin.
34
-
35
-```
36
-docker login
37
-```
38
-
39
-<a name="getting-the-scripts"/>
40
-
41
-### 2. Getting the scripts
42
-
43
-Clone this repository:
19
+Next, clone the `scalelite-run` repository
44
 
20
 
45
 ```
21
 ```
46
 git clone git@github.com:blindsidenetworks/scalelite-run.git
22
 git clone git@github.com:blindsidenetworks/scalelite-run.git
267
 bundle exec rake servers:enable["SERVER_ID_AS SHOWN"]
243
 bundle exec rake servers:enable["SERVER_ID_AS SHOWN"]
268
 ```
244
 ```
269
 
245
 
270
-For more information on what rake commands can be executed, see [scalelite documentation](https://github.com/blindsidenetworks/scalelite).
246
+For more information on what rake commands can be executed, see [scalelite documentation](https://github.com/blindsidenetworks/scalelite#administration).
271
 
247
 
272
 <a name="rolling-out-updates"/>
248
 <a name="rolling-out-updates"/>
273
 
249
 

Loading…
Cancel
Save