first commit
the build was successful Details

master
Andy 6 years ago
commit 3c0c0740c1
Signed by: arno
GPG Key ID: 9076D5E6B31AE99C

@ -0,0 +1 @@
.drone.yml

@ -0,0 +1,9 @@
pipeline:
publish:
image: plugins/docker:17.10
repo: andrey01/aria2c
tag: latest
dockerfile: Dockerfile
secrets: [ docker_username, docker_password ]
when:
event: [push, tag]

@ -0,0 +1,5 @@
FROM alpine:3.7
LABEL maintainer="andrey.arapov@nixaid.com"
RUN apk add --update aria2
WORKDIR /w
ENTRYPOINT ["/usr/bin/aria2c"]

@ -0,0 +1,15 @@
# aria2c
## Usage
```
echo 'alias aria2c="docker run -u \$(id -u):\$(id -g) -v \$(pwd):/w --rm -ti andrey01/aria2c"' | tee -a ~/.bashrc
source ~/.bashrc
aria2c yourlink...
```
## Build
```
docker build -t andrey01/aria2c .
```
Loading…
Cancel
Save