fix focalboard

This commit is contained in:
wvr
2026-02-23 18:53:02 -06:00
parent 4dde65f869
commit c8aa7f1838
2 changed files with 24 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
services:
app:
image: mattermost/focalboard:latest
container_name: focalboard
volumes:
- ./data:/opt/focalboard/data
ports:
- 4280:8000
environment:
- VIRTUAL_HOST=focalboard.local.wvr.sh
- VIRTUAL_PORT=8000
restart: unless-stopped

11
focalboard/fix.sh Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/sh -e
if [ ! -e data ] ; then
mkdir -p data
chown -R nobody data
fi
docker compose pull
docker compose down
docker compose up -d