Skip to content

Commit

Permalink
0.2 instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
aidanhs committed Aug 5, 2015
1 parent 7195f4e commit 8ee1782
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Dockerfile.release
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
FROM aidanhs/chmod

ADD https://github.com/aidanhs/dlgrab/releases/download/0.2/dlgrab-linux-x64 /dlgrab
RUN ["/chmod", "+x", "/dlgrab"]
ENTRYPOINT ["/dlgrab", "--outdir=/out"]
16 changes: 15 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,27 @@ stop working.
That said, it's probably more robust than trying to export directly from the
filesystem.

## Build dlgrab
## Get dlgrab

Build:

$ git clone https://github.com/aidanhs/dlgrab.git
$ cd dlgrab
$ make
$ ./dlgrab

Download:

$ wget -O dlgrab https://github.com/aidanhs/dlgrab/releases/download/0.2/dlgrab-linux-x64
$ ./dlgrab

Docker pull:

$ IMG=aidanhs/dlgrab:0.2
$ docker pull $IMG
$ alias dlgrab='docker run --rm -v $(pwd):/out -v /var/run/docker.sock:/var/run/docker.sock $IMG
$ dlgrab

## Usage

$ ./dlgrab
Expand Down

0 comments on commit 8ee1782

Please sign in to comment.