From bd65177a252126ed03066e09e1631f489200b645 Mon Sep 17 00:00:00 2001 From: MrUnknownDE Date: Mon, 13 Oct 2025 18:41:09 +0200 Subject: [PATCH] github readme sucks xd --- README.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index f675785..9f4e6cb 100644 --- a/README.md +++ b/README.md @@ -51,16 +51,15 @@ services: ports: - '8080:8080' ``` - - ```bash +```bash docker run -d \ -p 8080:8080 \ -v /path/to/your/data:/usr/src/app/data \ --name my-unknownbin \ ghcr.io/mrunknownde/unknownbin:main - ``` +``` - **Explanation:** +**Explanation:** * `-d`: Runs the container in the background (detached mode). * `-p 8080:8080`: Maps port 8080 on your host to port 8080 in the container. You can change the first number (e.g., `-p 3000:8080`) to use a different host port. * `-v /path/to/your/data:/usr/src/app/data`: **(Important!)** Mounts a directory from your host machine into the container to persist paste data. **Replace `/path/to/your/data`** with an actual path on your server (e.g., `/opt/unknownbin/data`).