asciinema.org/docker-compose.yml

78 lines
1.9 KiB
YAML
Raw Normal View History

version: '2'
# Quickstart:
2017-04-15 16:15:52 +00:00
# docker-compose run --rm db_init
2017-04-13 14:44:35 +00:00
# docker-compose up -d web
# To cleanup:
2017-04-13 14:44:35 +00:00
# docker-compose stop && docker-compose rm
services:
postgres:
image: postgres
2017-04-13 14:44:35 +00:00
container_name: asciinema_postgres
environment:
POSTGRES_USER: "asciinema"
POSTGRES_PASSWORD: "sekrit"
# 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
2017-04-14 22:03:17 +00:00
# see https://hub.docker.com/_/redis/ for more configuration options
# for this image
2017-04-13 13:56:37 +00:00
sidekiq:
image: asciinema/asciinema.org
2017-04-13 14:44:35 +00:00
container_name: asciinema_worker
links:
- redis
- postgres
- smtp
environment:
DATABASE_URL: "postgresql://asciinema:sekrit@postgres/asciinema"
REDIS_URL: "redis://redis:6379"
HOST: "localhost:3000"
command: "bundle exec sidekiq"
volumes:
- /tmp/asciinema/uploads:/app/uploads
smtp:
image: namshi/smtp
container_name: asciinema_smtp
environment:
MAILNAME: "localhost"
# see https://github.com/namshi/docker-smtp for more SMTP configuration options
# for this image
2017-04-13 14:44:35 +00:00
web:
image: asciinema/asciinema.org
2017-04-13 14:44:35 +00:00
container_name: asciinema_web
links:
- redis
- postgres
- smtp
depends_on:
- sidekiq
environment:
DATABASE_URL: "postgresql://asciinema:sekrit@postgres/asciinema"
REDIS_URL: "redis://redis:6379"
HOST: "localhost:3000" # replace with actual hostname/ip.... ${HOSTNAME} doesn't seem to work..
ports:
2017-04-13 13:56:50 +00:00
- "3000:80"
volumes:
- /tmp/asciinema/uploads:/app/uploads
db_init:
image: asciinema/asciinema.org
links:
2017-04-15 16:15:52 +00:00
- redis
- postgres
environment:
DATABASE_URL: "postgresql://asciinema:sekrit@postgres/asciinema"
2017-04-15 16:15:52 +00:00
REDIS_URL: "redis://redis:6379"
command: "bundle exec rake db:setup"
2017-04-15 16:15:52 +00:00
volumes:
- /tmp/asciinema/uploads:/app/uploads