Skip to content

Commit

Permalink
Merge pull request #20 from shotat/feature/docker
Browse files Browse the repository at this point in the history
Add docker version
  • Loading branch information
simonwhitaker authored Oct 29, 2017
2 parents b2661fd + 40c003d commit 4fb8d20
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM alpine

# install requirements
RUN apk --no-cache --update add \
ca-certificates git openssh util-linux && \
rm -rf /var/lib/apt/lists/* && \
rm /var/cache/apk/*

RUN git clone https://github.com/github/gitignore.git /root/.gitignore-boilerplates
COPY gibo gibo

ENTRYPOINT ["./gibo"]
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,18 @@ Right-click [this link](https://raw.githubusercontent.com/simonwhitaker/gibo/mas

A good directory to put the file is `C:\Users\<Your User>\bin` and add that directory to your system's PATH environment variable. Where ever you put it, make sure the batch file is accessible via `where gibo`.

### Installation on Docker

```sh
$ docker build . -t simonwhitaker/gibo
```

#### Running on Docker

```sh
$ docker run simonwhitaker/gibo --list
```

## Tab completion in bash, zsh and fish

bash, zsh and fish users can enjoy the deluxe gibo experience by enabling tab
Expand Down

0 comments on commit 4fb8d20

Please sign in to comment.