Introduce docker-compose config for development
This commit is contained in:
parent
e6db73f8d3
commit
c514fd62fe
7 changed files with 115 additions and 0 deletions
24
docker-compose.yml
Normal file
24
docker-compose.yml
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue