From 0d826e8fe276a3c0fa99b31f2fd3698b59a90ba6 Mon Sep 17 00:00:00 2001 From: MrUnknownDE Date: Mon, 13 Oct 2025 18:37:23 +0200 Subject: [PATCH] dafuq docker ? :D --- README.md | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 0b9df61..f675785 100644 --- a/README.md +++ b/README.md @@ -41,14 +41,15 @@ The easiest and recommended way to deploy unknownBIN is by using the pre-built D To ensure your pastes are saved even if the container is removed or updated, you must mount a volume for the data directory. ```yml +version: '3.9' services: - unknownbin: - image: 'ghcr.io/mrunknownde/unknownbin:main' - container_name: unknownbin - volumes: - - '/path/to/your/data:/usr/src/app/data' - ports: - - '8080:8080' + unknownbin: + image: 'ghcr.io/mrunknownde/unknownbin:main' + container_name: unknownbin + volumes: + - '/path/to/your/data:/usr/src/app/data' + ports: + - '8080:8080' ``` ```bash