Skip to content

Commit

Permalink
More updates
Browse files Browse the repository at this point in the history
  • Loading branch information
ashleykleynhans committed Jan 18, 2024
1 parent 93a1ff7 commit a1daa77
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions nginx/502.html
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ <h4 style="color:#FF6347">Check your container logs for the following:</h4>
<li>Ensure that there are no errors.</li>
<li>Ensure that the logs say <strong>Container is READY!</strong></li>
</ul>
<h4>If the container is READY</h4>
<ul class="lead">
<li>Check your application logs (refer to the README for more information).</li>
</ul>
<button class="btn btn-primary" onclick="location.reload()">Refresh</button>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions scripts/pre_start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ fi
sync_apps() {
# Sync venv to workspace to support Network volumes
echo "Syncing venv to workspace, please wait..."
rsync -au /venv/ /workspace/venv/
rsync ---remove-source-files -rlptDu /venv/ /workspace/venv/

# Sync Oobabooga Text Generation Web UI to workspace to support Network volumes
echo "Syncing Oobabooga Text Generation Web UI to workspace, please wait..."
rsync -au /text-generation-webui/ /workspace/text-generation-webui/
rsync --remove-source-files -rlptDu /text-generation-webui/ /workspace/text-generation-webui/

echo "${TEMPLATE_VERSION}" > /workspace/template_version
}
Expand Down

0 comments on commit a1daa77

Please sign in to comment.