Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,10 +85,14 @@ https://raw.githubusercontent.com/dbpedia/databus/68f976e29e2db15472f1b664a6fd58
### Requirements

In order to run the Databus on-premise you will need `docker` and `docker-compose`
installed on your machine. 
installed on your machine.

* `docker`: 20.10.2 or higher
* `docker-compose`: 1.25.0 or higher
* (Optional) **MongoDB:** Ensure you have MongoDB installed. You can check the server version with:
```bash
mongod --version
```

### Starting the Databus Server

Expand Down
6 changes: 5 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
version: "3.0"
name: "databus-nodejs-dockerized"

services:
databus:
image: "databus-rc12"
build:
context: .
dockerfile: Dockerfile
image: databus-local
ports:
- 3000:3000 # HTTP: Databus web UI
# - 80:80 # ** uncomment if proxy enabled only** HTTP port of included proxy (caddy) necessary for Auto-HTTPS via ACME and HTTP->HTTPS redirect
Expand Down