2016-03-14 16:39:39 -04:00
|
|
|
version: '2'
|
|
|
|
services:
|
|
|
|
db:
|
2016-10-25 07:21:48 -04:00
|
|
|
restart: always
|
2016-03-14 16:39:39 -04:00
|
|
|
image: postgres
|
|
|
|
redis:
|
2016-10-25 07:21:48 -04:00
|
|
|
restart: always
|
2016-03-14 16:39:39 -04:00
|
|
|
image: redis
|
2016-10-15 06:37:43 -04:00
|
|
|
neo4j:
|
2016-10-25 07:21:48 -04:00
|
|
|
restart: always
|
2016-10-15 10:13:16 -04:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: Dockerfile.neo4j
|
2016-03-24 21:50:48 -04:00
|
|
|
web:
|
2016-10-25 07:21:48 -04:00
|
|
|
restart: always
|
2016-10-15 10:13:16 -04:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: Dockerfile.app
|
|
|
|
env_file: .env.production
|
2016-03-14 16:39:39 -04:00
|
|
|
command: bundle exec rails s -p 3000 -b '0.0.0.0'
|
|
|
|
ports:
|
|
|
|
- "3000:3000"
|
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- redis
|
2016-10-15 06:37:43 -04:00
|
|
|
- neo4j
|
2016-03-16 07:57:01 -04:00
|
|
|
volumes:
|
|
|
|
- ./public/assets:/mastodon/public/assets
|
|
|
|
- ./public/system:/mastodon/public/system
|
2016-03-24 21:50:48 -04:00
|
|
|
sidekiq:
|
2016-10-25 07:21:48 -04:00
|
|
|
restart: always
|
2016-10-15 10:13:16 -04:00
|
|
|
build:
|
|
|
|
context: .
|
|
|
|
dockerfile: Dockerfile.app
|
|
|
|
env_file: .env.production
|
2016-03-24 21:50:48 -04:00
|
|
|
command: bundle exec sidekiq -q default -q mailers
|
|
|
|
depends_on:
|
|
|
|
- db
|
|
|
|
- redis
|
2016-10-15 06:37:43 -04:00
|
|
|
- neo4j
|
2016-03-24 21:50:48 -04:00
|
|
|
volumes:
|
|
|
|
- ./public/system:/mastodon/public/system
|