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
+36
Original file line number
Diff line number
Diff line change
@@ -11,3 +11,39 @@ To build this documentation standalone, run:
11
11
```bash
12
12
make html
13
13
```
14
+
15
+
## Running
16
+
17
+
This repository also includes a configuration file for *docker-compose*, to let you run the full system on a single host. To get started, you'll need to install:
18
+
19
+
*[Docker](https://docs.docker.com/installation/#installation) to build and launch the containers.
20
+
*[docker-compose](https://docs.docker.com/compose/install/) to manage the containers' configurations.
21
+
22
+
Then, you can build and run the service with:
23
+
24
+
```bash
25
+
export RACKSPACE_USERNAME=...
26
+
export RACKSPACE_APIKEY=...
27
+
28
+
docker-compose build && docker-compose up -d
29
+
```
30
+
31
+
To push content into your local system, you'll need to install the *preparer* with `pip`:
0 commit comments