Ready to use docker image to deploy Seismo server.
You have to install docker
on you machine first, please follow instruction here.
In order to get docker image with seismo, run
$ docker pull seismolabs/server
To persist the data, it's recomended to create external volume,
$ mkdir -p ~/seismo/data
You also have to create external config file,
$ mkdir -p ~/seismo/config
$ touch ~/seismo/config/index.js
Run the server,
$ docker run -d -p 80:8080 -v ~/seismo/data:/data/db -v ~/seismo/config:/home/seismo/config seismolabs/server
Run docker ps
command and you should we, the server is started.
MIT