Updated docker-renderd-osm
 
 
 
 
 
Go to file
Maximilian Güntner d0334ba6f8 Initial commit
Signed-off-by: Maximilian Güntner <maximilian.guentner@gmail.com>
2014-11-16 21:27:19 +01:00
apache2 Initial commit 2014-11-16 21:27:19 +01:00
renderd Initial commit 2014-11-16 21:27:19 +01:00
Dockerfile Initial commit 2014-11-16 21:27:19 +01:00
README.md Initial commit 2014-11-16 21:27:19 +01:00
runit_bootstrap Initial commit 2014-11-16 21:27:19 +01:00
tile.load Initial commit 2014-11-16 21:27:19 +01:00

README.md

docker-renderd-osm

A basic image for rendering/serving tiles using OpenStreetMap data from an external PostgreSQL instance.

Build instructions

Build using

# docker build -t mguentner/renderd-osm github.com/mguentner/docker-renderd-osm.git

Running

This container is designed to work together with openfirmware/docker-postgres-osm. This document assumes that OpenStreetMap data has already been imported. If not build/pull openfirmware/docker-osm2pgsql and follow the instructions.

First, start the already configured PostgreSQL container:

# docker start postgres-osm

Now, start the renderd container and link them together:

# docker run -i -t -p 8080:80 --link postgres-osm:pg  mguentner/renderd-osm:latest

Once the container is up you should be able to see a small map of the world once you point your browser to http://127.0.0.1:8080/osm_tiles/0/0/0.png

About

This Dockerfile has been put together using the Debian Tileserver Install Guide