Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enable multi-built image #157

Merged
merged 1 commit into from
Feb 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
context: ./
file: ./Dockerfile
target: prod
platforms: linux/amd64 # linux/arm/v7,linux/arm64,linux/386,linux/ppc64le,linux/s390x,linux/arm/v6
platforms: linux/amd64,linux/arm # linux/arm/v7,linux/arm64,linux/386,linux/ppc64le,linux/s390x,linux/arm/v6
push: true
tags: |
${{ steps.prep.outputs.docker-tags }}
Expand Down
10 changes: 7 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -640,7 +640,8 @@

<!-- Release Resources Field -->
<div class="form-group col">
<button type="button" id="delResources" onClick="releaseResources();" class="btn btn-warning w-100">Release Resources</button>
<button type="button" id="delResources" onClick="releaseResources();"
class="btn btn-warning w-100">Release Resources</button>
</div>


Expand Down Expand Up @@ -725,11 +726,14 @@
</div>
</div>

<!-- VM terminal Field
<div class="form-group col">
<button type="button" id="remoteTerminal" onClick="executeRemoteTerminal();" class="btn btn-warning w-100">Remote Terminal</button>
</div> -->

<!-- Remote Command Field -->
<div class="form-group col">
<button type="button" id="remoteCmd" onClick="executeRemoteCmd();" class="btn btn-warning w-100">Remote
Command</button>
<button type="button" id="remoteCmd" onClick="executeRemoteCmd();" class="btn btn-warning w-100">Remote Command</button>
</div>

<!-- File Transfer Field -->
Expand Down
1 change: 1 addition & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -3689,6 +3689,7 @@ function getAccessInfo() {
}
window.getAccessInfo = getAccessInfo;


// SSH Key save function
const saveBtn = document.querySelector(".save-file");
saveBtn.addEventListener("click", function () {
Expand Down
27 changes: 26 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"name": "cb-mapui",
"dependencies": {
"@xterm/addon-fit": "^0.10.0",
"@xterm/xterm": "^5.5.0",
"axios": "^1.6.0",
"buffer": "^6.0.3",
"csv-parser": "^3.0.0",
Expand Down
Loading