From eed5683aa9eabd407c956f226b0c621d7cf89c09 Mon Sep 17 00:00:00 2001 From: Rostislav <47450671+RoastSlav@users.noreply.github.com> Date: Tue, 29 Oct 2024 20:50:45 +0200 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a14210f..6a93372 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ docker pull roastslav/quickdrop:latest docker run -d -p 8080:8080 roastslav/quickdrop:latest ``` -Optional: Use a volume to persist the uploaded files or if you want to change the default configuration: +Optional: Use volumes to persist the uploaded files: ``` docker run -d -p 8080:8080 \ @@ -87,7 +87,7 @@ mvn clean package java -jar target/quickdrop-0.0.1-SNAPSHOT.jar ``` -4. Using an external application.properties file: +Using an external application.properties file: - Create an **application.properties** file in the same directory as the JAR file or specify its location in the start command. @@ -103,7 +103,7 @@ app.enable.password=false max-upload-file-size=1GB ``` -- Run the application with the external configuration: +- Run the application with the external configuration (If not in the same directory as the JAR file): ``` java -jar target/quickdrop-0.0.1-SNAPSHOT.jar --spring.config.location=./application.properties