doc: add build instructions to README

This commit is contained in:
Josh Schertz 2020-03-25 15:01:21 -04:00 committed by GitHub
parent 25dbde9cb5
commit 75cb31b3bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 1 deletions

View File

@ -20,7 +20,8 @@ This repository contains the necessary tools to run a Jitsi Meet stack on [Docke
* [Configurations](#configuration)
- [Advanced configuration](#advanced-configuration)
- [Running on a LAN environment](#running-on-a-lan-environment)
* [Limitations](#limitations)
* [Build Instructions](#build-instructions)
* [ToDo](#todo)
<hr />
@ -430,6 +431,16 @@ succeed. If your users are coming in over the Internet (and not over LAN), this
The public IP address is discovered via [STUN]. STUN servers can be specified with the ``JVB_STUN_SERVERS``
option.
## Build Instructions
Building your own images allows you to edit the configuration files of each image individually, providing more customization for your deployment.
The docker images can be built by running the `make` command in the main repository folder. If you need to overwrite existing images from the remote source, use `FORCE_REBUILD=1 make`.
If you are on the unstable branch, build the images with `FORCE_REBUILD=1 JITSI_RELEASE=unstable make`.
You are now able to run `docker-compose up` as usual.
## TODO
* Support container replicas (where applicable).