Update to FileBin 4.0.1 #noissue
All checks were successful
/ build (push) Successful in 1m9s

This commit is contained in:
Varakh 2024-01-21 18:40:43 +01:00
parent e6a89f4c1d
commit 982f6a4b65
5 changed files with 8 additions and 4 deletions

View file

@ -1,6 +1,6 @@
on: [ push ] on: [ push ]
env: env:
FB_VERSION: 4.0.0 FB_VERSION: 4.0.1
REVISION: ${{ github.sha }} REVISION: ${{ github.sha }}
IMAGE_TAG: varakh/filebin IMAGE_TAG: varakh/filebin
VERSION_MAJOR: 4 VERSION_MAJOR: 4

View file

@ -3,7 +3,7 @@ on:
branches: branches:
- master - master
env: env:
FB_VERSION: 4.0.0 FB_VERSION: 4.0.1
REVISION: ${{ github.sha }} REVISION: ${{ github.sha }}
IMAGE_TAG: varakh/filebin IMAGE_TAG: varakh/filebin
VERSION_MAJOR: 4 VERSION_MAJOR: 4

View file

@ -2,7 +2,7 @@ on:
schedule: schedule:
- cron: '0 0 1 * *' - cron: '0 0 1 * *'
env: env:
FB_VERSION: 4.0.0 FB_VERSION: 4.0.1
REVISION: ${{ github.sha }} REVISION: ${{ github.sha }}
IMAGE_TAG: varakh/filebin IMAGE_TAG: varakh/filebin
VERSION_MAJOR: 4 VERSION_MAJOR: 4

View file

@ -1,5 +1,9 @@
# CHANGELOG # CHANGELOG
## 2024-01-21
* Update to FileBin `4.0.1`
## 2022-12-16 ## 2022-12-16
* Update docker image packages * Update docker image packages

View file

@ -43,7 +43,7 @@ You'll probably want the `uploads/` folder to be persistent across container res
Here's an example on how to persist the `data/uploads/` folder of the application. Here's an example on how to persist the `data/uploads/` folder of the application.
* Create folder: `mkdir -p ./filebin_data` * Create folder: `mkdir -p ./filebin_data`
* Afterwards, adjust permissions so that the folder can be used within the docker * Afterward, adjust permissions so that the folder can be used within the docker
container: `chown -R 65534:102 <host-mount>` (`nobody:nginx`) container: `chown -R 65534:102 <host-mount>` (`nobody:nginx`)
* Reference the folder as a docker volume, e.g. with `./filebin_data:/var/www/data/uploads` * Reference the folder as a docker volume, e.g. with `./filebin_data:/var/www/data/uploads`