@@ -21,6 +21,7 @@ Rails application for developing Hydra Geo models. Built around Curation Concern
21
21
1 . [ GDAL] ( http://www.gdal.org/ )
22
22
* You can install it on Mac OSX with ` brew install gdal ` .
23
23
* On Ubuntu, use ` sudo apt-get install gdal-bin ` .
24
+ 1 . [ GeoServer] ( http://geoserver.org/ ) (Optional)
24
25
25
26
## Mapnik
26
27
@@ -73,3 +74,43 @@ Then, in another terminal window:
73
74
```
74
75
$ rake spec
75
76
```
77
+
78
+ ## Running GeoServer for Development with Docker
79
+
80
+ ### MacOS
81
+
82
+ 1 . Make sure you have docker engine, docker-machine, and docker-compose installed.
83
+ - Docker Toolbox: [ https://www.docker.com/products/docker-toolbox ] ( https://www.docker.com/products/docker-toolbox )
84
+
85
+ 1 . Execute the following command in the geo_concerns directory:
86
+
87
+ ```
88
+ $ source ./run-docker.sh
89
+ ```
90
+
91
+ ### Linux
92
+
93
+ 1 . Make sure you have docker engine and docker-compose installed.
94
+ - [ https://docs.docker.com/engine/installation/linux/ ] ( https://docs.docker.com/engine/installation/linux/ )
95
+ - [ https://docs.docker.com/compose/install/ ] ( https://docs.docker.com/compose/install/ )
96
+
97
+ 1 . Execute the following commands in the geo_concerns directory:
98
+
99
+ ```
100
+ $ docker-compose up -d
101
+ $ export GEOSERVER_URL="http://localhost:8181/geoserver/rest"
102
+ ```
103
+
104
+ ## Running GeoServer for Development with Vagrant
105
+
106
+ 1 . Make sure you have VirtualBox and Vagrant installed.
107
+ - [https://www.virtualbox.org/wiki/Downloads](https://www.virtualbox.org/wiki/Downloads)
108
+ - [https://www.vagrantup.com/docs/installation/](https://www.vagrantup.com/docs/installation/)
109
+ 1 . Execute the following commands:
110
+
111
+ ```
112
+ $ git clone https://github.com/geoconcerns/geoserver-vagrant.git
113
+ $ cd geoserver-vagrant/
114
+ $ vagrant up
115
+
116
+ ```
0 commit comments