From add3a0b1ab07ac73d8f603a041939e86d3816db9 Mon Sep 17 00:00:00 2001 From: Robert Carosi Date: Sat, 7 Sep 2024 12:25:03 +0200 Subject: [PATCH] Add docker compose configuration example --- docker-compose.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 90e16f7..586c9e5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,5 +1,3 @@ -version: '3' - services: remarkable-pocket: image: ghcr.io/nov1n/remarkable-pocket:0.4.0 @@ -12,3 +10,6 @@ services: - ~/.remarkable-pocket:/root/.remarkable-pocket - ~/.rmapi:/root/.rmapi - ~/.rmapi-cache:/root/.cache/rmapi + # Uncomment the line below to configure the application with additional command-line arguments. + # This example increases the article limit to 15, and reduces the sync interval to 30 minutes. + # command: ["-l", "15", "-i", "30m"]