From c9dc47d970da2e8884fd5e2c9ca62d34b170de52 Mon Sep 17 00:00:00 2001 From: Axel Date: Wed, 21 Jun 2023 15:05:12 +0200 Subject: [PATCH] Adding Docker to readme --- readme.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/readme.md b/readme.md index 002ebd0..92907e6 100644 --- a/readme.md +++ b/readme.md @@ -72,6 +72,8 @@ The application also uses: ## Installation +### Standalone + - configure your domain name. For example: files.yourdomain.com - clone the repo or download the sources into the webroot folder - configure your webserver to point your domain name to the `./public` folder @@ -85,6 +87,19 @@ The application also uses: - start the Laravel scheduler (it will delete expired bundles of the storage). For example `* * * * * /usr/bin/php /path-to-your-project/artisan schedule:run >> /dev/null 2>&1` - (optional) to purge bundles manually, run `php artisan fs:bundle:purge` +### Docker [WIP] + +This is a Work In Progress. + + +``` +docker run -d \ +-p 8080:80 \ +-v :/app/storage/content \ +--name filesharing \ +axeloz/filesharing +``` + Use your browser to navigate to your domain name (example: files.yourdomain.com) and **that's it**.