From c9394cd08f7e77b0ba90a4f98e9de8efbae8d7b2 Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Sun, 21 Aug 2022 17:05:56 -0500 Subject: [PATCH] Keep /config volume consistently --- Dockerfile | 6 +++++- Dockerfile.aarch64 | 6 +++++- Dockerfile.armhf | 6 +++++- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 54ad0bc..73d2dfe 100755 --- a/Dockerfile +++ b/Dockerfile @@ -180,5 +180,9 @@ RUN \ /root/.cache \ /root/.cargo -# add local files +# copy local files COPY root/ / + +# ports and volumes +EXPOSE 80 443 +VOLUME /config diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 5a7fecb..989ccf6 100755 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -180,5 +180,9 @@ RUN \ /root/.cache \ /root/.cargo -# add local files +# copy local files COPY root/ / + +# ports and volumes +EXPOSE 80 443 +VOLUME /config diff --git a/Dockerfile.armhf b/Dockerfile.armhf index d959fbe..83f4b1e 100755 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -179,5 +179,9 @@ RUN \ /root/.cache \ /root/.cargo -# add local files +# copy local files COPY root/ / + +# ports and volumes +EXPOSE 80 443 +VOLUME /config