2016-11-29 19:23:18 +00:00
|
|
|
version: '2'
|
|
|
|
|
|
|
|
services:
|
|
|
|
postgres:
|
|
|
|
image: postgres
|
2017-04-13 14:44:35 +00:00
|
|
|
container_name: asciinema_postgres
|
2017-04-15 20:52:23 +00:00
|
|
|
restart: unless-stopped
|
2017-04-18 17:41:53 +00:00
|
|
|
volumes:
|
|
|
|
- ./volumes/postgres:/var/lib/postgresql/data
|
2017-04-15 19:24:51 +00:00
|
|
|
### See https://hub.docker.com/_/postgres/ for more
|
|
|
|
### configuration options for this image.
|
2017-04-13 13:56:37 +00:00
|
|
|
|
2016-11-29 19:23:18 +00:00
|
|
|
redis:
|
|
|
|
image: redis
|
2017-04-13 14:44:35 +00:00
|
|
|
container_name: asciinema_redis
|
2017-04-15 20:52:23 +00:00
|
|
|
restart: unless-stopped
|
2017-04-18 17:41:53 +00:00
|
|
|
volumes:
|
|
|
|
- ./volumes/redis:/data
|
2017-04-15 19:24:51 +00:00
|
|
|
### See https://hub.docker.com/_/redis/ for more
|
|
|
|
### configuration options for this image.
|
2017-04-13 13:56:37 +00:00
|
|
|
|
2016-11-29 19:23:18 +00:00
|
|
|
sidekiq:
|
2017-04-15 20:50:08 +00:00
|
|
|
build: .
|
2016-11-29 19:23:18 +00:00
|
|
|
image: asciinema/asciinema.org
|
2017-04-13 14:44:35 +00:00
|
|
|
container_name: asciinema_worker
|
2017-04-15 20:52:23 +00:00
|
|
|
restart: unless-stopped
|
2016-11-29 19:23:18 +00:00
|
|
|
links:
|
|
|
|
- redis
|
|
|
|
- postgres
|
2017-04-13 20:19:39 +00:00
|
|
|
- smtp
|
2017-04-15 19:55:07 +00:00
|
|
|
env_file: .env.production
|
2017-04-13 20:19:39 +00:00
|
|
|
command: "bundle exec sidekiq"
|
2016-11-29 19:23:18 +00:00
|
|
|
volumes:
|
2017-04-18 17:41:53 +00:00
|
|
|
- ./uploads:/app/uploads
|
|
|
|
- ./log:/app/log
|
2016-11-29 19:23:18 +00:00
|
|
|
|
2017-04-13 20:19:39 +00:00
|
|
|
smtp:
|
|
|
|
image: namshi/smtp
|
|
|
|
container_name: asciinema_smtp
|
2017-04-15 20:52:23 +00:00
|
|
|
restart: unless-stopped
|
2017-04-15 19:55:07 +00:00
|
|
|
env_file: .env.production
|
|
|
|
### See https://github.com/namshi/docker-smtp for more SMTP configuration
|
|
|
|
### options for this image.
|
2017-04-13 20:19:39 +00:00
|
|
|
|
2017-04-13 14:44:35 +00:00
|
|
|
web:
|
2017-04-15 20:50:08 +00:00
|
|
|
build: .
|
2016-11-29 19:23:18 +00:00
|
|
|
image: asciinema/asciinema.org
|
2017-04-13 14:44:35 +00:00
|
|
|
container_name: asciinema_web
|
2017-04-15 20:52:23 +00:00
|
|
|
restart: unless-stopped
|
2016-11-29 19:23:18 +00:00
|
|
|
links:
|
|
|
|
- redis
|
|
|
|
- postgres
|
2017-04-13 20:19:39 +00:00
|
|
|
- smtp
|
2016-11-29 19:23:18 +00:00
|
|
|
depends_on:
|
|
|
|
- sidekiq
|
2017-04-15 19:55:07 +00:00
|
|
|
env_file: .env.production
|
2016-11-29 19:23:18 +00:00
|
|
|
ports:
|
2017-04-13 13:56:50 +00:00
|
|
|
- "3000:80"
|
2016-11-29 19:23:18 +00:00
|
|
|
volumes:
|
2017-04-18 17:41:53 +00:00
|
|
|
- ./uploads:/app/uploads
|
|
|
|
- ./log:/app/log
|