Initial version

Signed-off-by: Markos Rendell <markosrendell@gmail.com>
This commit is contained in:
Markos Rendell 2016-04-21 15:51:26 +01:00
commit 1c422a60f6
3 changed files with 29 additions and 0 deletions

10
.gitignore vendored Normal file
View File

@ -0,0 +1,10 @@
git-repos-vol
elk-data-vol
nexus-data-vol
gerrit-site-vol
volumes/elasticsearch-data-vol/elasticsearch/
volumes/jenkins-home-vol
*~
*.swp
*.swo
platform.secrets.sh*

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM alpine:latest
MAINTAINER kramos <markosrendell@gmail.com>
RUN apk add --update zip
ENTRYPOINT ["zip"]
CMD ["-h"]

10
README.md Normal file
View File

@ -0,0 +1,10 @@
#Supported tags and respective Dockerfile links
- [`0.1.0`, `0.1.0` (*0.1.0/Dockerfile*)](https://github.com/kramos/alpine-zip/blob/master/Dockerfile)
# How to use this image
```
docker run -v <local path to zip>:/to_zip zip -r <zip file name> /to_zip
```