You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
asciinema.org/docker-compose.yml

66 lines
1.5 KiB
YAML

version: '2'
services:
postgres:
image: postgres
container_name: asciinema_postgres
restart: unless-stopped
volumes:
- ./volumes/postgres:/var/lib/postgresql/data
### See https://hub.docker.com/_/postgres/ for more
### configuration options for this image.
redis:
image: redis
container_name: asciinema_redis
restart: unless-stopped
volumes:
- ./volumes/redis:/data
### See https://hub.docker.com/_/redis/ for more
### configuration options for this image.
sidekiq:
build: .
image: asciinema/asciinema.org
container_name: asciinema_worker
restart: unless-stopped
links:
- redis
- postgres
- smtp
env_file: .env.production
command: "bundle exec sidekiq"
volumes:
- ./uploads:/app/uploads
- ./log:/app/log
- /tmp/asciinema-web:/tmp
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.
web:
build: .
image: asciinema/asciinema.org
container_name: asciinema_web
restart: unless-stopped
links:
- redis
- postgres
- smtp
depends_on:
- sidekiq
env_file: .env.production
ports:
- "3000:80"
# - "4040:4040"
volumes:
- ./uploads:/app/uploads
- ./log:/app/log
- /tmp/asciinema-web:/tmp
- ./volumes/cache:/cache