Skip to content

Commit

Permalink
Merge pull request #2409 from jalessio/docker-compose-take2
Browse files Browse the repository at this point in the history
Add Docker Compose Support for Development Environment
  • Loading branch information
gravitystorm committed Feb 3, 2021
2 parents 66b5e85 + 4fac47a commit 86dbcb5
Show file tree
Hide file tree
Showing 12 changed files with 287 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .dockerignore
@@ -0,0 +1,6 @@
docker-db-data
log
tmp
docker-cache
.travis.yml
.git
36 changes: 36 additions & 0 deletions .github/workflows/docker.yml
@@ -0,0 +1,36 @@
name: Docker
on:
- push
- pull_request
jobs:
test:
name: Docker
runs-on: ubuntu-20.04
steps:
- name: Checkout source
uses: actions/checkout@v1
- name: Poke config
run: |
cp config/example.storage.yml config/storage.yml
cp config/docker.database.yml config/database.yml
touch config/settings.local.yml
- name: Build Docker Image
run: |
docker-compose build
- name: Start Docker-Compose
run: |
docker-compose up -d
sleep 15 # let the DB warm up a little
- name: Prepare Database
run: |
docker-compose run --rm web rake db:migrate
docker-compose run web bundle exec rake i18n:js:export
docker-compose run --rm web osmosis --rx docker/null-island.osm.xml --wd host=db database=openstreetmap user=openstreetmap password=openstreetmap validateSchemaVersion=no
- name: Test Basic Website
run: |
curl -siL http://127.0.0.1:3000 | egrep '^HTTP/1.1 200 OK'
curl -siL http://127.0.0.1:3000 | grep 'OpenStreetMap is the free wiki world map'
curl -siL http://127.0.0.1:3000/api/0.6/node/1 | grep 'Null Island'
- name: Test Complete Suite
run: |
docker-compose run --rm web bundle exec rails test:db
3 changes: 3 additions & 0 deletions .gitignore
Expand Up @@ -18,3 +18,6 @@ public/attachments
public/export
storage
tmp

# docker-compose database directory
docker-db-data
98 changes: 98 additions & 0 deletions DOCKER.md
@@ -0,0 +1,98 @@
# Using Docker and Docker Compose for Development and Testing

These instructions are designed for setting up The Rails Port for development and testing using [Docker](https://www.docker.com/). This will allow you to install the OpenStreetMap application and all its dependencies in Docker images and then run them in containers, almost with a single command. You will need to install Docker and Docker Compose on your development machine:

- [Install Docker](https://docs.docker.com/install/)
- [Install Docker Compose](https://docs.docker.com/compose/install/)

The first step is to fork/clone the repo to your local machine:

git clone https://github.com/openstreetmap/openstreetmap-website.git

Now change working directory to the `openstreetmap-website`:

cd openstreetmap-website

## Initial Setup

### Storage

cp config/example.storage.yml config/storage.yml

### Database

cp config/docker.database.yml config/database.yml

## Prepare local settings file

This is a workaround. [See issues/2185 for details](https://github.com/openstreetmap/openstreetmap-website/issues/2185#issuecomment-508676026).

touch config/settings.local.yml

## Installation

To build local Docker images run from the root directory of the repository:

docker-compose build

If this is your first time running or you have removed cache this will take some time to complete. Once the Docker images have finished building you can launch the images as containers.

To launch the app run:

docker-compose up -d

This will launch one Docker container for each 'service' specified in `docker-compose.yml` and run them in the background. There are two options for inspecting the logs of these running containers:

- You can tail logs of a running container with a command like this: `docker-compose logs -f web` or `docker-compose logs -f db`.
- Instead of running the containers in the background with the `-d` flag, you can launch the containers in the foreground with `docker-compose up`. The downside of this is that the logs of all the 'services' defined in `docker-compose.yml` will be intermingled. If you don't want this you can mix and match - for example, you can run the database in background with `docker-compose up -d db` and then run the Rails app in the foreground via `docker-compose up web`.

### Migrations

Run the Rails database migrations:

docker-compose run --rm web bundle exec rake db:migrate

### Tests

Run the test suite by running:

docker-compose run --rm web bundle exec rake test:db

### Loading an OSM extract

This installation comes with no geographic data loaded. You can either create new data using one of the editors (Potlatch 2, iD, JOSM etc) or by loading an OSM extract. Here an example for loading an OSM extract into your Docker-based OSM instance.

For example, let's download the District of Columbia from Geofabrik or [any other region](https://download.geofabrik.de):

wget https://download.geofabrik.de/north-america/us/district-of-columbia-latest.osm.pbf

You can now use Docker to load this extract into your local Docker-based OSM instance:

docker-compose run --rm web osmosis \
-verbose \
--read-pbf district-of-columbia-latest.osm.pbf \
--write-apidb \
host="db" \
database="openstreetmap" \
user="openstreetmap" \
validateSchemaVersion="no"

Once you have data loaded for Washington, DC you should be able to navigate to [`http://localhost:3000/#map=12/38.8938/-77.0146`](http://localhost:3000/#map=12/38.8938/-77.0146) to begin working with your local instance.

### Additional Configuration

See [`CONFIGURE.md`](CONFIGURE.md) for information on how to manage users and enable OAuth for iD, JOSM etc.

### Bash

If you want to get into a web container and run specific commands you can fire up a throwaway container to run bash in via:

docker-compose run --rm web bash

Alternatively, if you want to use the already-running `web` container then you can `exec` into it via:

docker-compose exec web bash

Similarly, if you want to `exec` in the db container use:

docker-compose exec db bash
50 changes: 50 additions & 0 deletions Dockerfile
@@ -0,0 +1,50 @@
FROM ubuntu:20.04

ENV DEBIAN_FRONTEND=noninteractive

# Install system packages
RUN apt-get update \
&& apt-get install --no-install-recommends -y \
build-essential \
curl \
default-jre-headless \
file \
firefox-geckodriver \
imagemagick \
libarchive-dev \
libffi-dev \
libgd-dev \
libmagickwand-dev \
libpq-dev \
libsasl2-dev \
libxml2-dev \
libxslt1-dev \
locales \
nodejs \
postgresql-client \
ruby2.7 \
ruby2.7-dev \
tzdata \
unzip \
yarnpkg \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

# Install current Osmosis
RUN curl -OL https://github.com/openstreetmap/osmosis/releases/download/0.47.2/osmosis-0.47.2.tgz \
&& tar -C /usr/local -xzf osmosis-0.47.2.tgz

ENV DEBIAN_FRONTEND=dialog

# Setup app location
RUN mkdir -p /app
WORKDIR /app

# Install Ruby packages
ADD Gemfile Gemfile.lock /app/
RUN gem install bundler \
&& bundle install

# Install NodeJS packages
ADD package.json yarn.lock /app/
RUN yarnpkg install
6 changes: 5 additions & 1 deletion INSTALL.md
Expand Up @@ -3,7 +3,11 @@
These instructions are designed for setting up The Rails Port for development and testing.
If you want to deploy the software for your own project, then see the notes at the end.

You can install the software directly on your machine, which is the traditional and probably best-supported approach. However, there is an alternative which may be easier: Vagrant. This installs the software into a virtual machine, which makes it easier to get a consistent development environment and may avoid installation difficulties. For Vagrant instructions, see [VAGRANT.md](VAGRANT.md).
You can install the software directly on your machine, which is the traditional and probably best-supported approach. However, there
are two alternatives which make it easier to get a consistent development environment and may avoid installation difficulties:

* **Vagrant** This installs the software into a virtual machine. For Vagrant instructions see [VAGRANT.md](VAGRANT.md).
* **Docker** This installs the software using containerization. For Docker instructions see [DOCKER.md](DOCKER.md).

These instructions are based on Ubuntu 20.04 LTS, which is the platform used by the OSMF servers.
The instructions also work, with only minor amendments, for all other current Ubuntu releases, Fedora and MacOSX
Expand Down
2 changes: 1 addition & 1 deletion config/boot.rb
@@ -1,4 +1,4 @@
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)

require "bundler/setup" # Set up gems listed in the Gemfile.
require "bootsnap/setup" # Speed up boot time by caching expensive operations.
require "bootsnap/setup" if ENV.fetch("ENABLE_BOOTSNAP", "true") == "true" # Speed up boot time by caching expensive operations.
20 changes: 20 additions & 0 deletions config/docker.database.yml
@@ -0,0 +1,20 @@
# This configuration is tailored for use with docker-compose. See DOCKER.md for more information.

development:
adapter: postgresql
database: openstreetmap
username: openstreetmap
password: openstreetmap
host: db
encoding: utf8

# Warning: The database defined as 'test' will be erased and
# re-generated from your development database when you run 'rake'.
# Do not set this db to the same as development or production.
test:
adapter: postgresql
database: osm_test
username: openstreetmap
password: openstreetmap
host: db
encoding: utf8
40 changes: 40 additions & 0 deletions docker-compose.yml
@@ -0,0 +1,40 @@
version: "3"

services:
web:
build:
context: .
volumes:
- .:/app
# Prevent these directories from mounting so they're not shared between host OS and Docker
- /app/node_modules/
- /app/tmp/
# Mount these upload directories so they persist between runs
- web-traces:/home/osm/traces
- web-images:/home/osm/images
ports:
- "3000:3000"
environment:
# https://github.com/Shopify/bootsnap/issues/262
ENABLE_BOOTSNAP: 'false'
command: bundle exec rails s -p 3000 -b '0.0.0.0'
depends_on:
- db

db:
build:
context: .
dockerfile: docker/postgres/Dockerfile
ports:
- "54321:5432"
environment:
POSTGRES_HOST_AUTH_METHOD: trust
POSTGRES_DB: openstreetmap
volumes:
# Mount the Postgres data directory so it persists between runs
- db-data:/var/lib/postgresql/data

volumes:
web-traces:
web-images:
db-data:
7 changes: 7 additions & 0 deletions docker/null-island.osm.xml
@@ -0,0 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?>
<osm version="0.6" generator="Osmosis 0.47.2">
<bounds minlon="-180.00000" minlat="-90.00000" maxlon="180.00000" maxlat="90.00000" origin="Osmosis 0.47.2"/>
<node id="1" version="1" timestamp="1970-01-01T00:00:00Z" uid="1" user="nobody" lat="0" lon="0">
<tag k="name" v="Null Island"/>
</node>
</osm>
7 changes: 7 additions & 0 deletions docker/postgres/Dockerfile
@@ -0,0 +1,7 @@
FROM postgres:11

# Add db init script to install OSM-specific Postgres functions/extensions.
ADD docker/postgres/openstreetmap-postgres-init.sh /docker-entrypoint-initdb.d/

# Custom database functions are in a SQL file.
ADD db/functions/functions.sql /usr/local/sbin/osm-db-functions.sql
14 changes: 14 additions & 0 deletions docker/postgres/openstreetmap-postgres-init.sh
@@ -0,0 +1,14 @@
#!/bin/bash
set -ex

# Create 'openstreetmap' user
psql -v ON_ERROR_STOP=1 -U "$POSTGRES_USER" <<-EOSQL
CREATE USER openstreetmap SUPERUSER PASSWORD 'openstreetmap';
GRANT ALL PRIVILEGES ON DATABASE openstreetmap TO openstreetmap;
EOSQL

# Create btree_gist extensions
psql -v ON_ERROR_STOP=1 -U "$POSTGRES_USER" -c "CREATE EXTENSION btree_gist" openstreetmap

# Define custom functions
psql -v ON_ERROR_STOP=1 -U "$POSTGRES_USER" -f "/usr/local/sbin/osm-db-functions.sql" openstreetmap

0 comments on commit 86dbcb5

Please sign in to comment.