mirror of
https://github.com/tiredofit/docker-db-backup.git
synced 2025-12-21 21:33:28 +01:00
26 lines
586 B
Docker
26 lines
586 B
Docker
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 /
|
|
|
|
### Entrypoint Configuration
|
|
ENTRYPOINT ["/init"]
|
|
|