Skip to content

Commit

Permalink
update filebrowser und redis-commander
Browse files Browse the repository at this point in the history
  • Loading branch information
gschmutz committed Jun 7, 2024
1 parent bc1ef6e commit 18f73b4
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion documentation/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -1514,7 +1514,7 @@ For each service there might be some other settings, such as controlling the num
| [**_File Browser_**](./services/file-browser.md)     ![x86-64](./images/x86-64.png) | | | | | |
| `FILE_BROWSER_enable` | `false` | 1.11.0 | Generate Filebrowser service |
| `FILE_BROWSER_user` | `admin` | 1.18.0 | The first user to create. |
| `FILE_BROWSER_password` | `admin` | 1.18.0 | The hashed password (bcrypt) for the first user. You can use <https://bcrypt-generator.com/> to encrypt the password. |
| `FILE_BROWSER_password` | `admin` | 1.18.0 | The hashed password (bcrypt) for the first user. You can generate a password using `filebrowser hash <password>` or in docker `docker run -ti --rm hurlenko/filebrowser hash <password>`. |
| [**_WeTTY_**](./services/wetty.md) &nbsp;&nbsp;&nbsp;&nbsp;![x86-64](./images/x86-64.png) | | | | | |
| `WETTY_enable` | `false` | 1.9.0 | Generate WeTTY service (Terminal over HTTP) |
| [**_Raneto_**](./services/raneto.md) &nbsp;&nbsp;&nbsp;&nbsp;![x86-64](./images/x86-64.png) | | | |
Expand Down
12 changes: 11 additions & 1 deletion documentation/services/filebrowser.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,14 @@ platys gen

## How to use it?

Navigate to <http://dataplatform:28178> and login with the default user `admin` and password `admin`.
Navigate to <http://dataplatform:28178> and login with the default user `admin` and password `admin`.

### Changing password

Add to `config.yml`

```
FB_PASSWORD=<bcrypt-password>
```

To encrypt the password, you can run `docker run -ti hurlenko/filebrowser hash <password>`.
Original file line number Diff line number Diff line change
Expand Up @@ -12763,7 +12763,7 @@ services:
environment:
- REDIS_HOST=redis-1
- REDIS_PORT=6379
- REDIS_PASSWORD='abc123!'
- REDIS_PASSWORD={{REDIS_password if REDIS_password is defined and REDIS_password and REDIS_password | length else omit}}
- REDIS_DB=0
{%if use_timezone | default(false) %}
- TZ={{use_timezone}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2408,6 +2408,7 @@
FILE_BROWSER_enable: false
FILE_BROWSER_volume_map_data: false
FILE_BROWSER_user: admin
# must be bcrypt encrypted: 'docker run -ti hurlenko/filebrowser hash <password>' to encrypt
FILE_BROWSER_password:

#
Expand Down

0 comments on commit 18f73b4

Please sign in to comment.