Test container for trying out serving existing mbtiles file from GeoWebCache.
To build:
- Put the geowebcache.war in the main folder of this project.
- Put your .mbtiles file in
/data
- Edit
/data/geowebcache.xml
to point to your data file. - Edit
/ROOT/index.html
to point to the correct layer name (if something other than OSM). - Build the container
docker build --rm -t local/gwc .
- Run the container
docker run -it --rm --name gwc -p 8080:8080 local/gwc
- Open `http://localhost:8080/index.html
TODO:
- Fix styling of demo (in
/ROOT/
)