sticksnleaves/ruby-project
is a Docker image used for building
Ruby based projects at
Sticksnleaves.
This image comes with bundler
pre-installed.
This image should primarily be used as a project's base image. When used with
compose
this can be specified as the services image
.
/usr/src/app
is exposed at the images WORKDIR
. All project files should
be contained within this directory. Most likely you want to mount this directory
as a local volume
.
version: '2'
services:
app:
image: sticksnleaves/ruby-project:latest
volumes:
- .:/usr/src/app