]> git.openstreetmap.org Git - rails.git/blob - DOCKER.md
Add Docker README and Makefile for helper commands
[rails.git] / DOCKER.md
1 # Using Docker and Docker Compose to run OpenStreetMap
2
3 Using [Docker](https://www.docker.com/) 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:
4
5 - [Install Docker](https://docs.docker.com/install/)
6 - [Install Docker Compose](https://docs.docker.com/compose/install/)
7
8 These instructions gloss over the precise details of the dependencies and their configuration but these can be found in full detail at [INSTALL.md](INSTALL.md).
9
10 The first step is to fork/clone the repo to your local machine. The repository is reasonably large (~150MB) and it's unlikely that you need the full history. If you are happy to wait for it all to download, run:
11
12     git clone https://github.com/openstreetmap/openstreetmap-website.git
13
14 To clone only the most recent version (~23MB), instead use a 'shallow clone':
15
16     git clone --depth=1 https://github.com/openstreetmap/openstreetmap-website.git
17
18 Now change working directory to the `openstreetmap-website`:
19
20     cd openstreetmap-website
21
22 ### Storage setup
23
24     cp config/example.storage.yml config/storage.yml
25
26 ### Database
27
28     cp config/docker.database.yml config/database.yml
29
30 ### App configuration
31
32     cp config/settings.yml config/settings.local.yml
33
34 ### Installation
35
36 In the root directory run:
37
38     docker-compose build
39
40 Now if this is your first time running or you have removed cache this will take some time to complete. So grab tea/coffee and sit tight. Once the Docker images have finished building you can launch the images as containers.
41
42 To launch the app run:
43
44     docker-compose up -d
45
46 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:
47
48 - You can tail logs of a running container with a command like this: `docker-compose logs -f web` or `docker-compose logs -f db`.
49 - 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`.
50
51 ### Migrations
52
53 While the `db' service is running, open another terminal windows and run:
54
55     docker-compose run --rm web rake db:migrate
56
57 ### Node.js modules
58
59 We use Yarn to manage the Node.js modules required for the project:
60
61     docker-compose run --rm web rake yarn:install
62
63 Once these are complete you should be able to visit the app at http://localhost:3000
64
65 If localhost does not work, you can use the IP address of the docker-machine.
66
67 ### Tests
68
69     docker-compose run --rm web rake test:db
70
71 ### Bash
72
73 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:
74
75     docker-compose run --rm web bash
76
77 Alternatively, if you want to use the already-running `web` container then you can `exec` into it via:
78
79     docker-compose exec web bash
80
81 Similarly, if you want to `exec` in the db container use:
82
83     docker-compose exec db bash
84
85 ### Populating the database
86
87 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.
88
89 After installing but before creating any users or data, import an extract with [Osmosis](https://wiki.openstreetmap.org/wiki/Osmosis) and the `--write-apidb` task. The `web` container comes with `osmosis` pre-installed. So to populate data with a `.osm.pbf` use the following command:
90
91     docker-compose run --rm web osmosis \
92         --read-pbf /path/to/file.osm.pbf \
93         --write-apidb \
94         host="db" \
95         database="openstreetmap" \
96         user="openstreetmap" \
97         validateSchemaVersion="no"