Skip to content

sticksnleaves/docker-ruby-project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 

Repository files navigation

Supported tags and respective Dockerfile links

What is this image?

sticksnleaves/ruby-project is a Docker image used for building Ruby based projects at Sticksnleaves.

This image comes with bundler pre-installed.

How to use this image

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.

Example docker-compose.yml

version: '2'
services:
  app:
    image: sticksnleaves/ruby-project:latest
    volumes:
      - .:/usr/src/app