Skip to content
This repository has been archived by the owner on Mar 6, 2019. It is now read-only.

Commit

Permalink
Add lipbostal servic
Browse files Browse the repository at this point in the history
The Pelias API has now been modified to expect libpostal to live as a
separate HTTP service rather than being included in memory.

This PR adds the libpostal service to `docker-compose.yml` but doesn't
change anything else. The current (as of 2018/3/19) `production` version
of Pelias API does not yet use the libpostal service. It's convenient to
have this merged so that we can start the process of switching over,
though.

Connects #42
  • Loading branch information
orangejulius committed Mar 19, 2018
1 parent 6f81de4 commit 6459c7e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ services:
volumes:
- "./pelias.json:/code/pelias.json"
- "libpostaldata:/usr/share/libpostal"
libpostal:
image: pelias/go-whosonfirst-libpostal
container_name: pelias_libpostal
restart: always
ports: [ "8080:8080" ]
networks: [ "pelias" ]
placeholder:
depends_on: [ "baseimage" ]
image: pelias/placeholder
Expand Down

0 comments on commit 6459c7e

Please sign in to comment.