-
Notifications
You must be signed in to change notification settings - Fork 3
Setup tileserver for public land tiles #155
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
base: master
Are you sure you want to change the base?
Changes from all commits
39487b3
db131a4
4fafe74
02a44b4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,3 @@ | ||
| # Backup public keys | ||
|
|
||
| Users holding the private key to any of the public keys in this folder will be allowed to SSH into the database and | ||
| webserver containers as `backupreader` to copy backups off-site. | ||
| Users holding the private key to any of the public keys in this folder will be allowed to SSH into the backup_manager container as `backupreader` to makes backups off-site. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -66,6 +66,7 @@ services: | |
| - WG_HOSTNAME=${WG_HOSTNAME:-localhost} | ||
| depends_on: | ||
| - ropewiki_webserver | ||
| - ropewiki_tileserver | ||
| volumes: | ||
| - ropewiki_proxy_certs:/etc/letsencrypt | ||
| - ropewiki_proxy_logs:/logs | ||
|
|
@@ -111,6 +112,16 @@ services: | |
| - INBOUND_TLS=no # Don't require local clients to use TLS | ||
| - ACCEPTED_NETWORKS=172.16.0.0/12 # Only accept connections from docker's internal network | ||
|
|
||
| ropewiki_tileserver: | ||
| image: maptiler/tileserver-gl:latest | ||
| hostname: ropewiki_tileserver | ||
| restart: unless-stopped | ||
| ports: | ||
| - "7979:7979" | ||
| volumes: | ||
| - /mnt/rwimages/tiles:/data | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This seems like a new requirement to have for a site deployment -- let's add documentation describing how someone would get the appropriate data since someone couldn't bring up a working site instance without it. These instructions should be complete and sufficient to bring up a deployment of the site, assuming the user has access to the right things (database backup, images folder) |
||
| command: -c config.json -p 7979 | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this config.json file in the /mnt/rwimages/tiles folder? If so, it seems like it should be tracked in this repo and probably we should build an image based on maptiler/tileserver-gl |
||
|
|
||
| volumes: | ||
| ropewiki_database_storage: | ||
| name: ropewiki_database_storage | ||
|
|
||
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 we pin this more specifically?
latesttags often break things on a schedule we don't control