-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expose and restructure the documentation #118
Merged
Changes from 16 commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
2eb248c
Try using a symlink to gain access to Birdhouse-deploy scripts, conve…
Zeitsperre b10efb0
remove geoserver README.md
Zeitsperre aa57c88
Remove old README.md, update paths in conf.py, add optional-component…
Zeitsperre e575452
Fix broken relpaths, update tope-level README.rst, adjust order of pages
Zeitsperre 89a070e
Use the download role for non-rst files in optional-components README…
Zeitsperre 533ac93
Test with relpath
Zeitsperre 2d5b5e9
Try more relpaths, prioritize GitHub
Zeitsperre 4356cb9
mroe tests
Zeitsperre 88f29ec
more tests
Zeitsperre d82e181
Links now fixed for GitHub navigation and for downloading of scripts …
Zeitsperre 1dc9025
Add links to the components README.rst
Zeitsperre 62e5cca
components/README: remove TODO note
tlvu cbdb442
optional-components/README: add automated TOC generation
tlvu 44e05c6
components/README: add more links to mentionned scripts in this repo
tlvu fe68cfe
optional-components/README: avoid dupe definition of env.local.exampl…
tlvu cc61639
docs: do not reference geoserver docker build instructions
tlvu 9650df7
docs: comment out index and module index since they do not work on RtD
tlvu f4cac34
docs: add script to locally test build on RtD
tlvu 9520ace
docs: delete empty installation.rst file
tlvu 222e84d
RtD-build: delete previous build output to ensure fresh build
tlvu db4d5aa
docs: make relative links for files at root of RtD work
tlvu 7f5e0ef
components/README: add missing deploy.sh download link
tlvu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why not just keep the original text "How to deploy the entire PAVICS platform, see the following README pages:" ... cuz it reads weird if user is actually on Github.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I mention GitHub here because on RtD, clicking these links won't work, last I checked.