-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #118 from bird-house/fix_docs
Expose and restructure the documentation. The documentation can be viewed inline when browsing on Github or on ReadTheDocs https://birdhouse-deploy.readthedocs.io. Convert all `.md` files to `.rst` files so they can be used on ReadTheDocs. Due to the hybrid goal (view doc both while browsing Github and on ReadTheDocs), some compromise had to be made: * all the relative links to other files in this repo are only working while browsing Github, not on RtD * a "download" link is added to all those relative links for RtD, but annoyingly those "download" link are also visible while browsing Github but not working The current state is not perfect. We'll try to address the "relative links" vs "download links" work-around to have hybrid doc both when browsing Github and on ReadTheDocs another time.
- Loading branch information
Showing
15 changed files
with
239 additions
and
224 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
docker-geoserver | ||
================ | ||
|
||
A simple docker container that runs Geoserver influenced by this docker | ||
recipe: https://github.com/eliotjordan/docker-geoserver/blob/master/Dockerfile | ||
and modified for the PAVICS Project. | ||
|
||
The actual Geoserver is 2.9.3. | ||
The geoserver data directory rest on the host and must be mapped on /opt/geoserver/data_dir (container) | ||
|
||
Our Dockerfile is a modified version of | ||
https://hub.docker.com/r/kartoza/geoserver/tags, | ||
https://github.com/kartoza/docker-geoserver/blob/a71a2aa79315783283a33436f101857ab7eae5a4/Dockerfile. | ||
|
||
.. code-block:: shell | ||
docker build --build-arg -t pavics/geoserver . | ||
docker run --name "postgis" -d -t pavics/postgis:9.4-2.1 | ||
docker run --name "geoserver" --link postgis:postgis -p <host port>:8080 -v <host path to the geoserver datadir>:/opt/geoserver/data_dir -d -t pavics/geoserver | ||
docker run --name "geoserver" --link postgis:postgis -p 8080:8080 -v /data/geoserver_data:/opt/geoserver/data_dir -d -t pavics/geoserver |
Oops, something went wrong.