20 lines
317 B
YAML
20 lines
317 B
YAML
db:
|
|
image: bterkuile/couchdb
|
|
volumes:
|
|
- db:/usr/local/var/lib/couchdb
|
|
expose:
|
|
- 5984
|
|
net: host
|
|
counters:
|
|
image: ruby:2.2
|
|
web:
|
|
build: .
|
|
#command: bundle exec unicorn -p 3000 -c ./config/unicorn.rb
|
|
command: rails s
|
|
volumes:
|
|
- .:/usr/src/app
|
|
ports:
|
|
- "3000:3000"
|
|
#links:
|
|
# #- db
|