This commit is contained in:
parent
e6a89f4c1d
commit
982f6a4b65
5 changed files with 8 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
on: [ push ]
|
||||
env:
|
||||
FB_VERSION: 4.0.0
|
||||
FB_VERSION: 4.0.1
|
||||
REVISION: ${{ github.sha }}
|
||||
IMAGE_TAG: varakh/filebin
|
||||
VERSION_MAJOR: 4
|
||||
|
|
|
@ -3,7 +3,7 @@ on:
|
|||
branches:
|
||||
- master
|
||||
env:
|
||||
FB_VERSION: 4.0.0
|
||||
FB_VERSION: 4.0.1
|
||||
REVISION: ${{ github.sha }}
|
||||
IMAGE_TAG: varakh/filebin
|
||||
VERSION_MAJOR: 4
|
||||
|
|
|
@ -2,7 +2,7 @@ on:
|
|||
schedule:
|
||||
- cron: '0 0 1 * *'
|
||||
env:
|
||||
FB_VERSION: 4.0.0
|
||||
FB_VERSION: 4.0.1
|
||||
REVISION: ${{ github.sha }}
|
||||
IMAGE_TAG: varakh/filebin
|
||||
VERSION_MAJOR: 4
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
# CHANGELOG
|
||||
|
||||
## 2024-01-21
|
||||
|
||||
* Update to FileBin `4.0.1`
|
||||
|
||||
## 2022-12-16
|
||||
|
||||
* Update docker image packages
|
||||
|
|
|
@ -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.
|
||||
|
||||
* 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`)
|
||||
* Reference the folder as a docker volume, e.g. with `./filebin_data:/var/www/data/uploads`
|
||||
|
||||
|
|
Loading…
Reference in a new issue