File tree Expand file tree Collapse file tree 2 files changed +20
-1
lines changed
Expand file tree Collapse file tree 2 files changed +20
-1
lines changed Original file line number Diff line number Diff line change 1+ FROM aidanhs/chmod
2+
3+ ADD https://github.com/aidanhs/dlgrab/releases/download/0.2/dlgrab-linux-x64 /dlgrab
4+ RUN ["/chmod", "+x", "/dlgrab"]
5+ ENTRYPOINT ["/dlgrab", "--outdir=/out"]
Original file line number Diff line number Diff line change @@ -14,13 +14,27 @@ stop working.
1414That said, it's probably more robust than trying to export directly from the
1515filesystem.
1616
17- ## Build dlgrab
17+ ## Get dlgrab
18+
19+ Build:
1820
1921 $ git clone https://github.com/aidanhs/dlgrab.git
2022 $ cd dlgrab
2123 $ make
2224 $ ./dlgrab
2325
26+ Download:
27+
28+ $ wget -O dlgrab https://github.com/aidanhs/dlgrab/releases/download/0.2/dlgrab-linux-x64
29+ $ ./dlgrab
30+
31+ Docker pull:
32+
33+ $ IMG=aidanhs/dlgrab:0.2
34+ $ docker pull $IMG
35+ $ alias dlgrab='docker run --rm -v $(pwd):/out -v /var/run/docker.sock:/var/run/docker.sock $IMG
36+ $ dlgrab
37+
2438## Usage
2539
2640 $ ./dlgrab
You can’t perform that action at this time.
0 commit comments