adds docker-compose.yml

This commit is contained in:
Sameer Naik
2017-01-11 19:53:50 +05:30
parent 42b3e0085d
commit de3ab0835d

View File

@@ -0,0 +1,11 @@
version: '2'
services:
ruby:
tty: true # Enables debugging capabilities when attached to this container.
image: bitnami/ruby:latest
# command: sh -c 'bundle install && bundle exec rails server -b 0.0.0.0 -p 3000'
ports:
- 3000:3000
volumes:
- .:/app