Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ianvnorrisusds/1531 fix docker quickstart #2137

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions QUICKSTART.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@ Install [`docker`](https://docs.docker.com/get-docker/). See [Install Docker](IN
Use `docker-compose` to run the application:

```sh
$ docker-compose build
$ docker-compose up
```

> Note: This may take a while, possibly even an hour or two, since it has to build the containers and then download and process all the data.

After it initializes, you should be able to open the application in your browser at [http://localhost:8000](http://localhost:8000).

Mac Note: if you are seeing issues with port 5000 already in use, you may need to turn off AirPlay settings: https://nono.ma/port-5000-used-by-control-center-in-macos-controlce#:~:text=The%20process%20running%20on%20this,Receiver%20to%20release%20port%205000%20.
6 changes: 5 additions & 1 deletion data/data-pipeline/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ RUN /bin/sh -c make && make install

## gdal
RUN add-apt-repository ppa:ubuntugis/ppa
RUN apt-get -y install gdal-bin
RUN apt-get -y install gdal-bin libgdal-dev

## visualization/spatial queries
RUN apt-get -y install libspatialindex-dev


# Python package installation using poetry. See:
# https://stackoverflow.com/questions/53835198/integrating-python-poetry-with-docker
Expand Down