From d3c1db04c25b242cebe36b056ef1d10da0e360d0 Mon Sep 17 00:00:00 2001 From: Lyssieth Date: Wed, 18 Oct 2023 21:44:37 +0300 Subject: [PATCH] fix: dockerfile had the wrong strings --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d89f450..3203752 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,9 +21,9 @@ WORKDIR /app COPY ./static ./static ENV RUST_LOG=info -ENV RAVE_STORAGE_DIR=/data +ENV RAVE_STORAGE_DIR=/storage ENV RAVE_CACHE_DIR=/cache -VOLUME [ "/data", "/cache" ] +VOLUME [ "/storage", "/cache" ] ENTRYPOINT ["/rave"]