-
Notifications
You must be signed in to change notification settings - Fork 18
Add geoserver yml #204
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
Merged
Merged
Add geoserver yml #204
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
51e0439
adding yml for geoserver and extractors
tcnichol dcd1e3a
adding notes about what fields need to be replaced for extractors
tcnichol 225cb48
Merge branch 'develop' into add-geoserver-yml
tcnichol 59a0bd1
Merge branch 'develop' into add-geoserver-yml
tcnichol ef0d8ad
using TRAEFIK HOST for proxy
tcnichol 82663f0
all geoserver in one yml
tcnichol 02a7d5c
Merge branch 'develop' into add-geoserver-yml
tcnichol 1c6a289
fixing indents
tcnichol 40664db
fixed indents
tcnichol a306fb1
fixing latest tag
tcnichol 018a16f
fixing name - geotiff preview not previews
tcnichol e2051a2
adding in env example for geoserver
tcnichol b481181
Merge branch 'develop' into add-geoserver-yml
max-zilla abfabc8
Merge branch 'develop' into add-geoserver-yml
max-zilla fd7d312
Merge branch 'develop' into add-geoserver-yml
max-zilla 76e5389
Merge branch 'develop' into add-geoserver-yml
max-zilla 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 hidden or 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,93 @@ | ||
| version: "3.2" | ||
|
|
||
| services: | ||
|
|
||
| geoserver: | ||
| image: clowder/geoserver:${VERSION:-latest} | ||
| networks: | ||
| - clowder | ||
| # user: "55242:17027" | ||
| environment: | ||
| - RABBITMQ_URI=${RABBITMQ_URI:-amqp://guest:guest@rabbitmq/%2F} | ||
| - RABBITMQ_EXCHANGE=${RABBITMQ_EXCHANGE:-clowder} | ||
| - REGISTRATION_ENDPOINTS=${REGISTRATION_ENDPOINTS} | ||
| - PROXY_ON=${PROXY_ON} | ||
| - PROXY_HOST=${TRAEFIK_HOST} | ||
| - PROXY_URL=${PROXY_URL} | ||
| - GEOSERVER_USERNAME=${GEOSERVER_USERNAME:-admin} | ||
| - GEOSERVER_PASSWORD=${GEOSERVER_PASSWORD:-geoserver} | ||
| - GEOSERVER_WORKSPACE=${GEOSERVER_WORKSPACE} | ||
| - GEOSERVER_USER=${GEOSERVER_USER:-admin} | ||
| - GEOSERVER_URL=${GEOSERVER_URL} | ||
| ports: | ||
| - 8080:8080 | ||
| volumes: | ||
| - /generated/data/mounting:/data_dir | ||
| restart: unless-stopped | ||
|
|
||
|
|
||
|
|
||
| ncsa_geo_shp: | ||
| image: clowder/extractors-geoshp-preview:latest | ||
| networks: | ||
| - clowder | ||
| environment: | ||
| - RABBITMQ_URI=${RABBITMQ_URI:-amqp://guest:guest@rabbitmq/%2F} | ||
| - RABBITMQ_EXCHANGE=${RABBITMQ_EXCHANGE:-clowder} | ||
| - REGISTRATION_ENDPOINTS=${REGISTRATION_ENDPOINTS} | ||
| - PROXY_ON=${PROXY_ON} | ||
| - PROXY_HOST=${TRAEFIK_HOST} | ||
| - PROXY_URL=${PROXY_URL} | ||
| - GEOSERVER_USERNAME=${GEOSERVER_USERNAME:-admin} | ||
| - GEOSERVER_PASSWORD=${GEOSERVER_PASSWORD:-geoserver} | ||
| - GEOSERVER_WORKSPACE=${GEOSERVER_WORKSPACE} | ||
| - GEOSERVER_USER=${GEOSERVER_USER:-admin} | ||
| - GEOSERVER_URL=${GEOSERVER_URL:-http://geoserver:8080} | ||
| depends_on: | ||
| - geoserver | ||
| - rabbitmq | ||
| - clowder | ||
| restart: unless-stopped | ||
|
|
||
| extractor-geotiff-preview: | ||
| image: clowder/extractors-geotiff-preview:latest | ||
| networks: | ||
| - clowder | ||
| environment: | ||
| - RABBITMQ_URI=${RABBITMQ_URI:-amqp://guest:guest@rabbitmq/%2F} | ||
| - RABBITMQ_EXCHANGE=${RABBITMQ_EXCHANGE:-clowder} | ||
| - REGISTRATION_ENDPOINTS=${REGISTRATION_ENDPOINTS} | ||
| - PROXY_ON=${PROXY_ON} | ||
| - PROXY_HOST=${TRAEFIK_HOST} | ||
| - PROXY_URL=${PROXY_URL} | ||
| - GEOSERVER_USERNAME=${GEOSERVER_USERNAME:-admin} | ||
| - GEOSERVER_PASSWORD=${GEOSERVER_PASSWORD:-geoserver} | ||
| - GEOSERVER_WORKSPACE=${GEOSERVER_WORKSPACE} | ||
| - GEOSERVER_USER=${GEOSERVER_USER:-admin} | ||
| - GEOSERVER_URL=${GEOSERVER_URL:-http://geoserver:8080} | ||
| depends_on: | ||
| - geoserver | ||
| restart: unless-stopped | ||
|
|
||
| extractor-geotiff-metadata: | ||
| image: clowder/extractors-geotiff-metadata:latest | ||
| networks: | ||
| - clowder | ||
| environment: | ||
| - RABBITMQ_URI=${RABBITMQ_URI:-amqp://guest:guest@rabbitmq/%2F} | ||
| - RABBITMQ_EXCHANGE=${RABBITMQ_EXCHANGE:-clowder} | ||
| - REGISTRATION_ENDPOINTS=${REGISTRATION_ENDPOINTS} | ||
| - PROXY_ON=${PROXY_ON} | ||
| - PROXY_HOST=${TRAEFIK_HOST} | ||
| - PROXY_URL=${PROXY_URL} | ||
| - GEOSERVER_USERNAME=${GEOSERVER_USERNAME:-admin} | ||
| - GEOSERVER_PASSWORD=${GEOSERVER_PASSWORD:-geoserver} | ||
| - GEOSERVER_WORKSPACE=${GEOSERVER_WORKSPACE} | ||
| - GEOSERVER_USER=${GEOSERVER_USER:-admin} | ||
| - GEOSERVER_URL=${GEOSERVER_URL:-http://geoserver:8080} | ||
| depends_on: | ||
| - geoserver | ||
| restart: unless-stopped | ||
|
|
||
| networks: | ||
| clowder: | ||
This file contains hidden or 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
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.
can you add these to the env.example and document them
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.
Yes, can do.