mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
shorewall and vault
Signed-off-by: Jessica Frazelle <acidburn@docker.com>
This commit is contained in:
parent
4ea09b90f1
commit
9416812385
15
shorewall/Dockerfile
Normal file
15
shorewall/Dockerfile
Normal file
|
@ -0,0 +1,15 @@
|
|||
# shorewall in a container
|
||||
#
|
||||
# docker run --rm -it \
|
||||
# --net host \
|
||||
# --cap-add NET_ADMIN \
|
||||
# jess/shorewall
|
||||
#
|
||||
FROM alpine:latest
|
||||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apk update && apk add \
|
||||
shorewall \
|
||||
&& rm -rf /var/cache/apk/*
|
||||
|
||||
CMD [ "shorewall" ]
|
19
vault/Dockerfile
Normal file
19
vault/Dockerfile
Normal file
|
@ -0,0 +1,19 @@
|
|||
FROM alpine:latest
|
||||
MAINTAINER Jessica Frazelle <jess@docker.com>
|
||||
|
||||
RUN apk update && apk add \
|
||||
ca-certificates \
|
||||
curl \
|
||||
&& curl -sSL https://circle-artifacts.com/gh/andyshinn/alpine-pkg-glibc/6/artifacts/0/home/ubuntu/alpine-pkg-glibc/packages/x86_64/glibc-2.21-r2.apk -o /tmp/glibc-2.21-r2.apk \
|
||||
&& apk add --allow-untrusted /tmp/glibc-2.21-r2.apk \
|
||||
&& curl -sSL https://circle-artifacts.com/gh/andyshinn/alpine-pkg-glibc/6/artifacts/0/home/ubuntu/alpine-pkg-glibc/packages/x86_64/glibc-bin-2.21-r2.apk -o /tmp/glibc-bin-2.21-r2.apk \
|
||||
&& apk add --allow-untrusted /tmp/glibc-bin-2.21-r2.apk \
|
||||
&& rm -rf /tmp/glibc* \
|
||||
&& rm -rf /var/cache/apk/*
|
||||
|
||||
ENV CONSUL_VERSION 0.5.2
|
||||
|
||||
RUN curl -sSL https://jesss.s3.amazonaws.com/binaries/vault -o /bin/vault \
|
||||
&& chmod +x /bin/vault
|
||||
|
||||
ENTRYPOINT [ "/bin/vault" ]
|
Loading…
Reference in New Issue
Block a user