Introduce docker-compose config for development

This commit is contained in:
Jamie Alessio 2019-10-22 19:48:02 +00:00 committed by Michal Migurski
parent e6db73f8d3
commit c514fd62fe
7 changed files with 115 additions and 0 deletions

24
docker-compose.yml Normal file
View file

@ -0,0 +1,24 @@
version: "3"
services:
web:
build:
context: .
volumes:
- .:/app
ports:
- "3000:3000"
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_DB: openstreetmap
volumes:
- ./docker-db-data:/var/lib/postgresql/data