Skip to content
This repository has been archived by the owner on Mar 22, 2019. It is now read-only.

Commit

Permalink
dockerization complete
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Oct 15, 2017
1 parent 4723ebb commit 9510029
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM dockerizedember/website-dev:latest

# Customizations for this project here.
# e.g.: if you have dependencies in addition to what the base image provides:
ADD Gemfile /src/Gemfile
ADD Gemfile.lock /src/Gemfile.lock
RUN bundle install

ADD . /src
11 changes: 11 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
version: '2'
services:
guides:
build:
context: .
dockerfile: ./Dockerfile
command: bundle exec middleman
ports:
- "4567:4567"
volumes:
- .:/src

0 comments on commit 9510029

Please sign in to comment.