From d469ed5c0165d01bdee3280d40a35501623797ca Mon Sep 17 00:00:00 2001 From: axeloz Date: Sat, 24 Jun 2023 12:08:43 +0200 Subject: [PATCH] Update readme.md --- readme.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index db9c021..9e7ede9 100644 --- a/readme.md +++ b/readme.md @@ -83,10 +83,9 @@ docker run -d \ -v :/app/storage/content \ --name filesharing \ -e UPLOAD_MAX_FILESIZE="1G" \ -axeloz/filesharing: +axeloz/filesharing:latest ``` - use the `-v` option to bind your local storage to the docker instance (persisting data) -- replace `` with latest FileSharing version - adapt the `-p` option to listen to the port you need - you may pass env variables with the `-e` option - you can use a reverse proxy for SSL termination (example: nginx) @@ -97,7 +96,7 @@ You can also use in docker compose with the following template: version: '3' services: app: - image: axeloz/filesharing:2.10 + image: axeloz/filesharing:latest environment: UPLOAD_MAX_FILESIZE: "1G" UPLOAD_MAX_FILES: "100"