1.0 - Initial Relase

This commit is contained in:
Dave Conroy
2017-09-13 18:29:01 -07:00
commit f1d875bceb
6 changed files with 451 additions and 0 deletions

25
Dockerfile Normal file
View File

@@ -0,0 +1,25 @@
FROM tiredofit/alpine:edge
LABEL maintainer="Dave Conroy (dave at tiredofit dot ca)"
### Set Environment Variables
ENV ENABLE_SMTP=FALSE
### Dependencies
RUN echo "@testing http://nl.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories && \
apk update && \
apk add \
bzip2 \
influxdb@testing \
mongodb-tools \
mysql-client \
postgresql-client \
redis \
xz && \
rm -rf /var/cache/apk/*
### S6 Setup
ADD install/s6 /etc/s6
### Entrypoint Configuration
ENTRYPOINT ["/init"]