c7652e0f90
Fixed typo in volume name
35 lines
1.1 KiB
Docker
35 lines
1.1 KiB
Docker
FROM ubuntu:latest
|
|
|
|
# Labels
|
|
LABEL maintainer="Paulino Padial <github.com/ppadial>"
|
|
|
|
# Environment variables (with default values)
|
|
ENV CRON_LOG_LEVEL=8
|
|
|
|
# PostgreSQL 10 repository install
|
|
RUN apt-get update && apt-get upgrade -y && \
|
|
apt-get install -y wget lsb-release && \
|
|
wget -q https://www.postgresql.org/media/keys/ACCC4CF8.asc -O - | apt-key add - && \
|
|
echo "deb http://apt.postgresql.org/pub/repos/apt/ `lsb_release -cs`-pgdg main" >> /etc/apt/sources.list.d/pgdg.list
|
|
|
|
# Packages installation
|
|
RUN apt-get update && apt-get upgrade -y && \
|
|
apt-get install -y autopostgresqlbackup cron bzip2 gzip postgresql-client && \
|
|
apt-get purge -y --auto-remove && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
# Copy files to the image
|
|
ADD autopostgresqlbackup.conf /etc/default/autopostgresqlbackup
|
|
ADD autopostgresqlbackup /usr/sbin/autopostgresqlbackup
|
|
RUN chmod 755 /usr/sbin/autopostgresqlbackup
|
|
|
|
# Configure entrypoint
|
|
ADD docker-entrypoint.sh /docker-entrypoint.sh
|
|
RUN chmod +x /docker-entrypoint.sh
|
|
|
|
# Volumes declaration
|
|
VOLUME ["/backups"]
|
|
|
|
# Start the container process
|
|
ENTRYPOINT ["/docker-entrypoint.sh"]
|