Packages Mattermost's focalboard server for the current docker platform (e.g. raspberry pi) in a docker container.
I wanted to try focalboard on my raspberry pi, but no ARM builds where available at that time.
Compiles the source release of focalboard and combines it with the non-platform specific files from the binary release.
Plase edit the config.json
and change the default settings (e.g. secrets).
docker build --build-arg focalboard_version=0.6.5 -t focalboard .
docker run -it -p 8000:8000 focalboard
Open a browser to http://localhost:8000 to start
Docker-Compose provides the option to automate the build and run step, or even include some of the steps from the personal server setup.
To start the server run
docker-compose up
This will automatically build the focalboard image and start it with the http port mapping.