version bump, docs update

This commit is contained in:
Milos Stojanovic 2023-01-25 13:48:21 +01:00
parent 37d25ef881
commit ebc76388ae
5 changed files with 10 additions and 7 deletions

View File

@ -2,6 +2,9 @@
## Upcoming...
## 7.9.2 - 2023-01-25
* Docker update, port changed to 8080 (see #376)
## 7.9.1 - 2023-01-20
* Lockout bugfix

View File

@ -83,8 +83,8 @@ This is read-only demo with guest account enabled
Rut it with docker:
```
docker run -p 8000:80 -d filegator/filegator
visit: http://127.0.0.1:8000 login as admin/admin123
docker run -p 8080:8080 -d filegator/filegator
visit: http://127.0.0.1:8080 login as admin/admin123
```

2
dist/index.php vendored
View File

@ -41,7 +41,7 @@ if (! defined('APP_PUBLIC_PATH')) {
}
define('APP_PUBLIC_DIR', __DIR__);
define('APP_VERSION', '7.9.1');
define('APP_VERSION', '7.9.2');
use Filegator\App;
use Filegator\Config\Config;

View File

@ -41,8 +41,8 @@ This is read-only demo with guest account enabled
Rut it with docker
```
docker run -p 8000:80 -d filegator/filegator
visit: http://127.0.0.1:8000 login as admin/admin123
docker run -p 8080:8080 -d filegator/filegator
visit: http://127.0.0.1:8080 login as admin/admin123
```
## Limitations

View File

@ -5,8 +5,8 @@ currentMenu: install
## Docker
You can use the [official docker image](https://hub.docker.com/r/filegator/filegator) based on [this Dockerfile](https://github.com/filegator/filegator/blob/master/Dockerfile)
```
docker run -p 8000:80 -d filegator/filegator
visit: http://127.0.0.1:8000 login as admin/admin123
docker run -p 8080:8080 -d filegator/filegator
visit: http://127.0.0.1:8080 login as admin/admin123
```
## Minimum Requirements