asciinema.org/docker-compose.yml

62 lines
1.4 KiB
YAML
Raw Normal View History

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