diff --git a/README.md b/README.md index e28c19f..3b3e401 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docker-compose.yml b/docker-compose.yml index 83b49a2..4a1b187 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -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