From da1242f3860f9f0f980a3fe1505fc71112d9fbfe Mon Sep 17 00:00:00 2001 From: Daniel Dolezal <40464775+daniel156161@users.noreply.github.com> Date: Wed, 12 Aug 2020 01:51:44 +0200 Subject: [PATCH] Update Dockerfile --- Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Dockerfile b/Dockerfile index f42b066..d238bd5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,12 @@ FROM alpine:latest +ENV PFSENSE_IP=192.168.0.1 +ENV PFSENSE_USER=backupuser +ENV PFSENSE_PASS=changeme +ENV PFSENSE_SCHEME=https + RUN apk update ; apk upgrade ; apk add wget ; apk add --no-cache tzdata ; apk add --no-cache bash + COPY pfsense-backup.sh / VOLUME ["/data"] CMD ["/pfsense-backup.sh"]