1
0
mirror of https://github.com/peterbourgon/runsvinit.git synced 2026-03-19 22:27:23 +01:00

First draft

This commit is contained in:
Peter Bourgon
2015-09-25 12:30:24 +02:00
parent 33c958bc9d
commit 4e6968fe8f
8 changed files with 247 additions and 0 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM alpine:latest
RUN echo "http://dl-4.alpinelinux.org/alpine/edge/testing" >>/etc/apk/repositories && apk add --update runit && rm -rf /var/cache/apk/*
ADD reap /
ADD foo /
RUN mkdir -p /etc/service/foo
ADD run-foo /etc/service/foo/run
ADD bar /
RUN mkdir -p /etc/service/bar
ADD run-bar /etc/service/bar/run
ENTRYPOINT ["/reap"]