2016-03-14 20:39:39 +00:00
|
|
|
version: '2'
|
|
|
|
services:
|
|
|
|
db:
|
|
|
|
image: postgres
|
|
|
|
redis:
|
|
|
|
image: redis
|
|
|
|
web:
|
|
|
|
build: .
|
|
|
|
command: bundle exec rails s -p 3000 -b '0.0.0.0'
|
|
|
|
ports:
|
|
|
|
- "3000:3000"
|
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- redis
|
2016-03-16 11:57:01 +00:00
|
|
|
volumes:
|
|
|
|
- ./public/assets:/mastodon/public/assets
|
|
|
|
- ./public/system:/mastodon/public/system
|
2016-03-14 20:39:39 +00:00
|
|
|
env_file: .env.production
|