mirror of
https://github.com/tiredofit/docker-db-backup.git
synced 2025-12-21 13:23:12 +01:00
27 lines
614 B
Docker
27 lines
614 B
Docker
FROM tiredofit/alpine:edge
|
|
LABEL maintainer="Dave Conroy (dave at tiredofit dot ca)"
|
|
|
|
### Set Environment Variables
|
|
ENV ENABLE_CRON=FALSE \
|
|
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 /
|
|
|
|
### Entrypoint Configuration
|
|
ENTRYPOINT ["/init"]
|
|
|