From 106aaee2fd2d8ba697b2cf0d98dd4e352a1cb02f Mon Sep 17 00:00:00 2001 From: R0GGER <8298741+R0GGER@users.noreply.github.com> Date: Sun, 23 Feb 2025 14:51:01 +0100 Subject: [PATCH] Update README.md --- README.md | 21 ++++----------------- 1 file changed, 4 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 9521428..b3e248e 100644 --- a/README.md +++ b/README.md @@ -87,35 +87,22 @@ Coming soon... docker pull ghcr.io/r0gger/bookmarkly:latest ``` -**Run with Docker** -```bash -docker run --name bookmarkly \ - -d \ - --restart always \ - -p 80:80 \ - -v bookmarkly_data:/var/www/html/bookmarkly/data \ - ghcr.io/r0gger/bookmarkly:latest -``` - **Docker Compose** ```yaml services: bookmarkly: - image: ghcr.io/r0gger/bookmarkly:latest + build: . ports: - "80:80" volumes: - bookmarkly_data:/var/www/html/bookmarkly/data + environment: + - BOOKMARKLY_VERSION=1.5 restart: unless-stopped - healthcheck: - test: ["CMD", "curl", "-f", "http://localhost/"] - interval: 30s - timeout: 10s - retries: 3 - start_period: 10s volumes: bookmarkly_data: + driver: local ``` ## First Time Setup