-
Notifications
You must be signed in to change notification settings - Fork 75
Docker Quick Start
Hylke van der Schaaf edited this page Sep 6, 2018
·
3 revisions
If you have docker and docker-compose
-
Download our docker-compose file:
wget https://raw.githubusercontent.com/FraunhoferIOSB/FROST-Server/master/docker-compose.yaml
-
Start the server with docker:
docker-compose up
-
Fetch a json file with some demo entities:
wget https://gist.githubusercontent.com/hylkevds/4ffba774fe0128305047b7bcbcd2672e/raw/demoEntities.json
-
Post it to the server:
curl -X POST -H "Content-Type: application/json" -d @demoEntities.json http://localhost:8080/FROST-Server/v1.0/Things
-
Browse to http://localhost:8080/FROST-Server/v1.0
-
Enjoy!