added instruction on how to run in docker

This commit is contained in:
Rostislav Raykov
2024-10-17 22:37:29 +03:00
parent 8fe95d74fd
commit 4910cddff5
2 changed files with 25 additions and 1 deletions

View File

@@ -38,6 +38,30 @@ protection.
### Installation
**Installation with Docker**
1. Pull the Docker image:
```
docker pull roastslav/quickdrop:latest
```
2. Run the Docker container:
```
docker run -d -p 8080:8080 roastslav/quickdrop:latest
```
Optional: Use a volume to persist the uploaded files or change the default configuration:
```
docker run -d -p 8080:8080 \
-v /path/to/db:/app/db \
-v /path/to/log:/app/log \
-v /path/to/files:/files \
quickdrop
```
**Installation without Docker**
1. Clone the repository:

View File

@@ -10,7 +10,7 @@
</parent>
<groupId>org.rostislav</groupId>
<artifactId>quickdrop</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0.0</version>
<name>quickdrop</name>
<description>quickdrop</description>
<url/>