Skip to content

Commit

Permalink
Merge branch 'master' into mergify
Browse files Browse the repository at this point in the history
  • Loading branch information
Gentux authored May 5, 2018
2 parents 8e5eda4 + 6f2ee91 commit 9f85ee0
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
10 changes: 10 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
FROM python:3.6

MAINTAINER Romain Soufflet <[email protected]>

RUN pip install tox twine wheel

ADD . /src
WORKDIR /src

RUN python setup.py develop
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,21 @@ If you want to add a minimal autocompletion, you can copy **imapcli_bash_complet

If you want to benefit from the wrapper script described below, copy the script `imapcli` in your PATH

## Quickstart (using Docker)

Pull imap-cli image:

```
docker pull gentux/imap-cli
```

As the first `quickstart` section, you'll need to configure imap-cli.

```
alias imap-cli="docker run -v ${HOME}/.config/imap-cli:/root/.config/imap-cli -t gentux/imap-cli imap-cli
```

And voilà, you can use imap-cli without installing or bothering with python.

## Usage CLI ##

Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[metadata]
description-file = README.md

0 comments on commit 9f85ee0

Please sign in to comment.