chore: add volume define in Dockerfile to avoid data lose (#1718)

Add volume define in Dockerfile to protect data

Co-authored-by: Athurg Feng <athurg@gooth.org>
This commit is contained in:
Athurg Gooth 2023-05-23 18:50:17 +08:00 committed by GitHub
parent 3b1bab651a
commit d24632682f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -34,5 +34,6 @@ EXPOSE 5230
# Directory to store the data, which can be referenced as the mounting point.
RUN mkdir -p /var/opt/memos
VOLUME /var/opt/memos
ENTRYPOINT ["./memos", "--mode", "prod", "--port", "5230"]