From dbb091e3bd9ee0645b3b4db9d8a0eadd2b6bddd1 Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Sun, 21 Aug 2022 17:06:05 -0500 Subject: [PATCH] Keep /config volume consistently --- Dockerfile | 4 ++++ Dockerfile.aarch64 | 4 ++++ Dockerfile.armhf | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/Dockerfile b/Dockerfile index e1914b0..bf28564 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,3 +41,7 @@ RUN \ # copy local files COPY root/ / + +# ports and volumes +EXPOSE 80 443 +VOLUME /config diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index eac36ac..1ee9705 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -41,3 +41,7 @@ RUN \ # copy local files COPY root/ / + +# ports and volumes +EXPOSE 80 443 +VOLUME /config diff --git a/Dockerfile.armhf b/Dockerfile.armhf index f3b3fa1..394ed92 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -41,3 +41,7 @@ RUN \ # copy local files COPY root/ / + +# ports and volumes +EXPOSE 80 443 +VOLUME /config