Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM dannyben/alpine-ruby

ENV PS1 "\n\n>> completely \W \$ "
WORKDIR /app

RUN gem install completely --version 0.4.3

ENTRYPOINT ["completely"]
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,13 @@ or with homebrew:
```bash
$ brew install brew-gem
$ brew gem install completely
````
```

or with Docker:

```bash
alias completely='docker run --rm -it --user $(id -u):$(id -g) --volume "$PWD:/app" dannyben/completely'
```

## Using the `completely` command line

Expand Down
1 change: 1 addition & 0 deletions Runfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ version Completely::VERSION

RunfileTasks::RubyGems.all 'completely'
RunfileTasks::Testing.rspec
RunfileTasks::Docker.all 'dannyben/completely', Completely::VERSION

help "Run interactive console"
action :console, :c do
Expand Down