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

Add docker support #2272

Closed
wants to merge 28 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
ad237cd
Add Dockerfile for rails app
fazlerabbi37 Jun 19, 2019
3fe73f0
Modify Dockerfile to fix comment for postgresql-client installation e…
fazlerabbi37 Jun 19, 2019
4eeb36a
Modify Dockerfile to separate apt cache clean, npm comment, and remov…
fazlerabbi37 Jun 20, 2019
caaa350
Add docker_postgres.sh for PostgreSQL extension and functions
fazlerabbi37 Jun 20, 2019
b6d373f
Add Dockerfile.postgres for postgres app
fazlerabbi37 Jun 20, 2019
30ad01e
Add docker-compose.yml to build the complete app
fazlerabbi37 Jun 20, 2019
447c55e
modify Dockerfile.postgres to fix script path
fazlerabbi37 Jul 21, 2019
0cf0d0c
modify Dockerfile.postgres to upgrade postgres image to 11
fazlerabbi37 Jul 21, 2019
18ef6b6
modify Dockerfile to change postgresql-client package and install pha…
fazlerabbi37 Jul 21, 2019
f75eea4
modify docker-compose.yml to fix context path
fazlerabbi37 Jul 21, 2019
0d15f1c
add DOCKER.md file with docker setup instructions
fazlerabbi37 Jul 21, 2019
c4c450f
add .dockerignore file to list ignorable file for docker
fazlerabbi37 Jul 21, 2019
076073b
modify DOCKER.md to add database population
fazlerabbi37 Jul 23, 2019
fc139b0
modify DOCKER.md to add app config
fazlerabbi37 Sep 6, 2019
29f6833
Merge branch 'master' into docker
fazlerabbi37 Sep 9, 2019
ce38a10
moved docker_postgres.sh to docker directory
fazlerabbi37 Sep 9, 2019
b03bfd1
modify Dockerfile.postgres file to change pgsql script location
fazlerabbi37 Sep 9, 2019
c6edb29
modify Dockerfile.postgres file to add app location and gem install
fazlerabbi37 Sep 9, 2019
8383453
modify Dockerfile.postgres file to move db function directory
fazlerabbi37 Sep 9, 2019
cb96ddd
modify docker_postgres.sh to fix libpgosm location
fazlerabbi37 Sep 9, 2019
a1413af
modify Dockerfile to add osmosis
fazlerabbi37 Sep 10, 2019
02851d2
modify DOCKER.md to add osmosis instructions
fazlerabbi37 Sep 10, 2019
6ce9e77
modify Dockerfile.postgres to add ruby compilation
fazlerabbi37 Sep 10, 2019
004227e
modify Dockerfile.postgres to change owner to postgres
fazlerabbi37 Sep 10, 2019
96383be
Merge branch 'master' into docker
fazlerabbi37 Sep 20, 2019
35ad5bd
Merge branch 'master' into docker
fazlerabbi37 Sep 24, 2019
4900551
Merge branch 'master' into docker
fazlerabbi37 Oct 6, 2019
7dd9810
Merge branch 'master' of https://github.com/openstreetmap/openstreetm…
fazlerabbi37 Oct 16, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docker/Dockerfile.postgres
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM postgres:9.4
FROM postgres:11

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Production still uses 9.5 as of now.

ADD db/docker_postgres.sh docker-entrypoint-initdb.d/docker_postgres.sh
ADD db/functions/ db/functions/
Expand Down