From 13bde63512225db32f7f8de23cbd4ee2e2642310 Mon Sep 17 00:00:00 2001 From: stirringhalo Date: Sat, 24 Jun 2017 18:11:34 -0400 Subject: [PATCH] Use later images (#289) Since all based on Postgis 2.9, saves time on Travis as same base and smaller downloads. --- UPDATE.md | 4 ++-- docker-compose.yml | 13 ++++++------- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/UPDATE.md b/UPDATE.md index ed3a32cc..20e5afe5 100644 --- a/UPDATE.md +++ b/UPDATE.md @@ -10,9 +10,9 @@ or import specific change files. ### Keep Database Updated -You can use the new imposm3 feature to keep the database updated (thanks to the [work for @stirringhalo](https://github.com/openmaptiles/openmaptiles/pull/131)). This will automatically download +You can use the new imposm3 feature to keep the database updated (thanks to the [work by @stirringhalo](https://github.com/openmaptiles/openmaptiles/pull/131)). This will automatically download the OSM change feed and import it into the database. -After each run of you should also have a list of tiles that have updated. +After each run you should also have a list of tiles that have updated. ``` docker-compose run update-osm diff --git a/docker-compose.yml b/docker-compose.yml index 7d11345c..55b8620a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -4,7 +4,7 @@ volumes: cache: services: postgres: - image: "openmaptiles/postgis:2.8" + image: "openmaptiles/postgis:2.9" volumes: - pgdata:/var/lib/postgresql/data networks: @@ -13,17 +13,17 @@ services: - "5432" env_file: .env import-natural-earth: - image: "openmaptiles/import-natural-earth:1.2" + image: "openmaptiles/import-natural-earth:1.3" env_file: .env networks: - postgres_conn import-water: - image: "openmaptiles/import-water:0.4" + image: "openmaptiles/import-water:0.5" env_file: .env networks: - postgres_conn import-lakelines: - image: "openmaptiles/import-lakelines:0.9" + image: "openmaptiles/import-lakelines:1.0" env_file: .env networks: - postgres_conn @@ -39,7 +39,7 @@ services: - ./build:/mapping - cache:/cache import-osmborder: - image: "openmaptiles/import-osmborder:0.2" + image: "openmaptiles/import-osmborder:0.3" env_file: .env networks: - postgres_conn @@ -68,7 +68,7 @@ services: - ./build:/mapping - cache:/cache import-sql: - image: "openmaptiles/import-sql:0.5" + image: "openmaptiles/import-sql:0.6" env_file: .env networks: - postgres_conn @@ -123,7 +123,6 @@ services: volumes: - ./build/openmaptiles.tm2source:/mapping - networks: postgres_conn: driver: bridge