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: README.md
+29-3Lines changed: 29 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,8 +34,17 @@ Fork this project, using of the following methods:
34
34
35
35
## Installation
36
36
37
-
To proceed with the installation for this project, both docker and rancher must be
38
-
installed. Installing docker must be done manually, to fulfill a set of [dependencies](https://jeff1evesque.github.io/machine-learning.docs/latest/html/installation/dependencies.html).
37
+
To proceed with the installation for this project, users will need to decide
38
+
whether to use the rancher ecosystem, or use `docker-compose`. The former will
39
+
likely be less reliable, since the corresponding install script, may not work
40
+
nicely across different operating systems. Additionally, this project will
41
+
assume rancher as the primary method to deploy, and run the application. So,
42
+
when using the `docker-compose` alternate, keep track what the corresponding
If users choose rancher, both docker and rancher must be installed.
47
+
Installing docker must be done manually, to fulfill a set of [dependencies](https://jeff1evesque.github.io/machine-learning.docs/latest/html/installation/dependencies.html).
39
48
Once completed, rancher can be installed, and automatically configured, by simply
40
49
executing a provided bash script, from the docker quickstart terminal:
41
50
@@ -47,11 +56,28 @@ cd /path/to/machine-learning
47
56
**Note:** the installation, and the configuration of rancher, has been [outlined](https://jeff1evesque.github.io/machine-learning.docs/latest/html/installation/rancher.html)
48
57
if more explicit instructions are needed.
49
58
59
+
If users choose to forgo rancher, and use the `docker-compose`, then simply
60
+
install `docker`, as well as `docker-compose`. This will allow the application
61
+
to be deployed from any terminal console:
62
+
63
+
```bash
64
+
cd /path/to/machine-learning
65
+
docker-compose up
66
+
```
67
+
68
+
**Note:** the installation, and the configuration of `docker-compose`, has been [outlined](https://jeff1evesque.github.io/machine-learning.docs/latest/html/installation/docker-compose.html)
69
+
if more explicit instructions are needed.
70
+
50
71
## Execution
51
72
52
73
Both the web-interface, and the programmatic-api, have corresponding
0 commit comments