From abc97f1ae8fc8da17807dacd5ebaa86978d3ef91 Mon Sep 17 00:00:00 2001 From: Bubka <858858+Bubka@users.noreply.github.com> Date: Thu, 31 Mar 2022 10:07:36 +0200 Subject: [PATCH] Update docs with latest 2FAuth version --- docker/README.md | 2 +- docs/debian-setup.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/README.md b/docker/README.md index 75b299ab..a773dd3d 100644 --- a/docker/README.md +++ b/docker/README.md @@ -81,7 +81,7 @@ ### Build the image for a specific release You can build a [specific release](https://github.com/Bubka/2FAuth/releases) by appending the release tag with `#` to the command. For example: ```sh -docker build -t 2fauth/2fauth https://github.com/Bubka/2FAuth.git#v2.1.0 +docker build -t 2fauth/2fauth https://github.com/Bubka/2FAuth.git#v3.0.0 ``` ### Build the image for a specific commit diff --git a/docs/debian-setup.md b/docs/debian-setup.md index c9a5898c..c967d601 100644 --- a/docs/debian-setup.md +++ b/docs/debian-setup.md @@ -5,7 +5,7 @@ # Debian Setup ## What we will do - We will use PHP 7.4 -- We will use version v2.1.0 of 2fauth +- We will use version v3.0.0 of 2fauth - We will setup to use an Sqlite database - We will use Nginx and PHP-FPM to serve our site on port `8000` - We will run all this as user `www-data` without root @@ -35,7 +35,7 @@ ## Download the code ```bash mkdir -p /srv -VERSION=v2.1.0 +VERSION=v3.0.0 wget -qO- "https://github.com/Bubka/2FAuth/archive/refs/tags/${VERSION}.tar.gz" | \ tar -xz --strip-components=1 -C /srv ```