-
Notifications
You must be signed in to change notification settings - Fork 1
Installation
Maxim Kolchin edited this page Oct 28, 2016
·
9 revisions
First of all, you need to install Docker and Docker Compose, if you didn't do it yet. Read instructions.
Then you're ready to pull the images from Docker Hub (it usually takes several minutes):
sudo docker-compose pull
This is an optional step, so you can skip it. But if you want to change the default configuration, then you need to create config.properties file at /semiot-platform folder. Below are possible configuration settings:
| Setting | Value | Description |
|---|---|---|
| semiot.platform.domain | http://localhost | Root URL where the starting page is available. It should include the scheme and domain name. |
| services.wamp.login | [A-Za-z0-9_]+ | Login for WAMP used by the platform for internal needs |
| services.wamp.password | [A-Za-z0-9_]+ | Password for WAMP used by the platform for internal needs |
| services.triplestore.url | URL of SPARQL endpoint, e.g. http://triplestore:3030/blazegraph/sparql |
Start up the containers:
sudo docker-compose up -d
If you want to see the logs of the containers then run:
sudo docker-compose logs