Retrospring/docker-compose.yml

35 lines
602 B
YAML
Raw Normal View History

2020-04-18 16:17:37 -07:00
version: "3.7"
services:
web:
build:
context: .
dockerfile: .docker/ruby/Dockerfile
command:
ruby bin/rails server --port 3000 --binding 0.0.0.0
links:
- postgres
- redis
environment:
- SPROCKETS_CACHE=/cache
2020-04-18 16:17:37 -07:00
volumes:
- ./:/app
- cache:/cache
2020-04-18 16:17:37 -07:00
ports:
- 3000:3000
redis:
image: redis:3.2.11-alpine
ports:
- 6379:6379
postgres:
image: postgres:10.12
ports:
- 5432:5432
environment:
POSTGRES_PASSWORD: justask
2020-04-19 12:08:17 -07:00
POSTGRES_DB: justask_development
volumes:
cache: