Add water as first example layer

This commit is contained in:
lukasmartinelli
2016-10-06 07:45:00 +02:00
parent b8b884ae1a
commit 211c765c02
6 changed files with 163 additions and 0 deletions

34
docker-compose.yml Normal file
View File

@@ -0,0 +1,34 @@
version: '2'
volumes:
pgdata:
services:
postgres:
image: "osm2vectortiles/postgis:latest"
volumes:
- pgdata:/var/lib/postgresql/data
ports:
- "5432"
env_file: .env
db-schema:
build: "./schema"
env_file: .env
links:
- postgres:postgres
import-natural-earth:
image: "osm2vectortiles/import-natural-earth"
env_file: .env
links:
- postgres
import-water:
image: "osm2vectortiles/import-water"
env_file: .env
links:
- postgres
mapbox-studio:
image: "osm2vectortiles/mapbox-studio"
volumes:
- ./:/projects/osm2vectortiles.tm2source
links:
- postgres:db
ports:
- "3000:3000"