1
0
mirror of https://github.com/mattermost/focalboard.git synced 2025-01-11 18:13:52 +02:00

Added Install/Build Instructions for Docker in Readme (#1705)

This commit is contained in:
Genei180 2021-11-01 06:30:26 +01:00 committed by GitHub
parent 2063a4ec47
commit b9a595425c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,6 +81,13 @@ You can build standalone apps that package the server to run locally against SQL
* `make win-wpf-app`
* run `cd win-wpf/msix && focalboard.exe`
* *Requires: Windows 10*
* Docker:
* To run it localy from Offical Image
* `docker run -it -p 80:8000 mattermost/focalboard`
* To Build it for your Current Architekture
* `docker build -f docker/Dockerfile .`
* To Build it for a custom Architekture (Expiremental)
* `docker build -f docker/Dockerfile --platform linux/arm64 .`
Cross-compilation currently isn't fully supported, so please build on the appropriate platform. Refer to the GitHub Actions workflows (build-mac.yml, build-win.yml, build-ubuntu.yml) for the detailed list of steps on each platform.