Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ ARG USER_NAME=fluree
ARG USER_UID=10001
ARG USER_GID=${USER_UID}
ENV FLUREE_HOME=/opt/fluree-server
ENV JAVA_OPTS="-Xmx8g"

WORKDIR ${FLUREE_HOME}

Expand All @@ -39,5 +40,5 @@ EXPOSE 58090

VOLUME ./data

ENTRYPOINT ["java", "-Xmx8g", "-jar", "server.jar"]
ENTRYPOINT ["java", "-jar", "server.jar"]
CMD ["--profile=docker"]
Loading