mirror of
https://github.com/jcwimer/wrestlingApp
synced 2026-03-25 01:14:43 +00:00
26 lines
427 B
YAML
26 lines
427 B
YAML
app:
|
|
image: wrestlingdev
|
|
ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
jobs:
|
|
image: wrestlingdev
|
|
command: bundle exec rake:jobs
|
|
db:
|
|
image: mysql:5.5
|
|
ports:
|
|
- "3306:3306"
|
|
volumes:
|
|
- /srv/docker/mysql:/var/lib/mysql
|
|
|
|
email:
|
|
image: postfix
|
|
|
|
memcached:
|
|
image: memcached
|
|
mem_limit: 64000000
|
|
|
|
worker:
|
|
image: wrestlingdev
|
|
command: /bin/bash -c "cd /var/www && bundle exec rake jobs:work RAILS_ENV=production"
|