mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
7eea00edf3
Signed-off-by: Michael Käufl <dockerfiles@c.michael-kaeufl.de>
19 lines
334 B
Docker
19 lines
334 B
Docker
# shorewall in a container
|
|
#
|
|
# docker run --rm -it \
|
|
# --net host \
|
|
# --cap-add NET_ADMIN \
|
|
# --privileged \
|
|
# jess/shorewall
|
|
#
|
|
FROM alpine:latest
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
RUN apk --no-cache add \
|
|
shorewall \
|
|
&& touch /var/log/messages
|
|
|
|
COPY ./etc /etc/shorewall
|
|
|
|
ENTRYPOINT [ "/usr/sbin/shorewall" ]
|