Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Automated Jitsi-Meet Setup
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Armin Co
Automated Jitsi-Meet Setup
Commits
0e0408c1
Commit
0e0408c1
authored
Oct 25, 2020
by
Armin Co
Browse files
Options
Downloads
Patches
Plain Diff
Fiux update script.
parent
c3325f7d
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
setup.sh
+12
-4
12 additions, 4 deletions
setup.sh
tools/update_containers.sh
+2
-2
2 additions, 2 deletions
tools/update_containers.sh
with
14 additions
and
6 deletions
setup.sh
+
12
−
4
View file @
0e0408c1
...
@@ -15,10 +15,7 @@ function remove_all_configs() {
...
@@ -15,10 +15,7 @@ function remove_all_configs() {
# Clone repositories
# Clone repositories
function
clone_repositories
()
{
function
clone_repositories
()
{
git clone
$LETSENCRYPT_URL
git clone
$LETSENCRYPT_URL
git clone
$JITSI_URL
git clone
$NOVNC_URL
git clone
$MUMBLE_URL
wait
}
}
function
configure_letsencrypt
()
{
function
configure_letsencrypt
()
{
...
@@ -66,11 +63,22 @@ echo ""
...
@@ -66,11 +63,22 @@ echo ""
remove_all_configs
remove_all_configs
clone_repositories
clone_repositories
if
[
"
$USE_JITSI
"
==
"true"
]
;
then
git clone
$JITSI_URL
./
"JITSI_DIR"
/setup.sh
fi
configure_letsencrypt
configure_letsencrypt
if
[
"
$USE_MUMBLE
"
==
"true"
]
;
then
if
[
"
$USE_MUMBLE
"
==
"true"
]
;
then
git clone
$MUMBLE_URL
configure_mumble
configure_mumble
fi
fi
if
[
"
$USE_NOVNC
"
==
"true"
]
;
then
git clone
$NOVNC_URL
fi
./tools/stop_containers.sh
./tools/stop_containers.sh
./tools/update_containers.sh
./tools/update_containers.sh
\ No newline at end of file
This diff is collapsed.
Click to expand it.
tools/update_containers.sh
+
2
−
2
View file @
0e0408c1
...
@@ -14,11 +14,11 @@ echo "Building images"
...
@@ -14,11 +14,11 @@ echo "Building images"
echo
""
echo
""
# Build new images if neccessary
# Build new images if neccessary
if
[
$USE_MUMBLE
=
"true"
]
;
then
if
[
"
$USE_MUMBLE
"
=
=
"true"
]
;
then
docker-compose
-f
$mumble_compose_file
build
docker-compose
-f
$mumble_compose_file
build
fi
fi
if
[
$USE_NOVNC
=
"true"
]
;
then
if
[
"
$USE_NOVNC
"
=
=
"true"
]
;
then
docker-compose
-f
$novnc_compose_file
build
docker-compose
-f
$novnc_compose_file
build
fi
fi
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment