howtomakeaturn / jitsi-meet-tweak

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

更新流程

  1. jitsi-meet-tweak 更新前端 UI 程式碼

  2. 將程式碼更新到另一個 repo: docker-jitsi-meet-tweak

  3. 連線到正式機的 repo: docker-jitsi-meet-tweak

  4. git pull

  5. 最後重新 build image

cd web/
docker build --no-cache -t jitsi/web:tweak .

Developer notes

/**
 * Modification by @howtomakeaturn
 */
.filmstrip {
    width: 100%;
    max-width: none;
    right: -50%;
    z-index: 2;
    padding: 0;
}

#localVideoWrapper video {
    width: 50%;
}

#largeVideoWrapper video {
    width: 50%;
}
make || { echo "Make failed"; exit 1; }
make source-package || { echo "Make source-package failed"; exit 1; }

echo "Moving and unzipping Jitsi-Meet package archive into Docker build context" && sleep 1

mv $TELEHEALTH_JITSI_MEET_DIR/jitsi-meet.tar.bz2 $REPO_ROOT/Docker/web || { echo "Failed to move packages to destination"; exit 1; }
cd $REPO_ROOT/Docker/web || { echo "Failed to find $REPO_ROOT/Docker/Web"; exit 1; }
tar -xvf jitsi-meet* || { echo "Failed to unzip archive"; exit 1; }
rm -rf $REPO_ROOT/Docker/web/jitsi-meet.tar.bz2

echo "Rebuilding Jitsi-Meet web Docker image" && sleep 1

docker build -t jitsi/web . || { echo "Docker operation failed"; exit 1; }
  • notice that for the last line, you should build with our tag & no-cache

About

License:Apache License 2.0


Languages

Language:JavaScript 81.5%Language:Java 4.9%Language:Lua 4.4%Language:SCSS 3.8%Language:Objective-C 2.7%Language:Swift 1.3%Language:Shell 0.6%Language:HTML 0.4%Language:Ruby 0.2%Language:Makefile 0.1%Language:C 0.0%Language:Starlark 0.0%