mirror of
https://github.com/RoastSlav/quickdrop.git
synced 2025-12-30 19:20:14 -06:00
added instruction on how to run in docker
This commit is contained in:
24
README.md
24
README.md
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user