Browse Source

window desc

master
zeus 3 years ago
parent
commit
86451dde5f
  1. 2
      README.md
  2. 2
      dist/index.html
  3. 2
      dist/js/app.9dd85a85.js
  4. 1
      dist/js/app.9dd85a85.js.map
  5. 2
      dist/js/app.bf5252c9.js
  6. 1
      dist/js/app.bf5252c9.js.map
  7. 17
      src/components/mynetwork/mytable.vue

2
README.md

@ -110,7 +110,7 @@ Local usage of the service <b>doesnt</b> require one, you only need to log in to
:warning: Since Docker uses hypervisor the host NEEDS TO HAVE VIRTUALIZATION ENABLED!
## Prerequisites<a name="prerequisites"></a>

2
dist/index.html

@ -1 +1 @@
<!DOCTYPE html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Vue App</title><link href="/css/app.f8f5dc61.css" rel="preload" as="style"><link href="/css/chunk-vendors.e469b508.css" rel="preload" as="style"><link href="/js/app.9dd85a85.js" rel="preload" as="script"><link href="/js/chunk-vendors.d8d18fe6.js" rel="preload" as="script"><link href="/css/chunk-vendors.e469b508.css" rel="stylesheet"><link href="/css/app.f8f5dc61.css" rel="stylesheet"></head><body><div id="app"></div><script src="/js/chunk-vendors.d8d18fe6.js"></script><script src="/js/app.9dd85a85.js"></script></body></html>
<!DOCTYPE html><html lang=""><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><title>Vue App</title><link href="/css/app.f8f5dc61.css" rel="preload" as="style"><link href="/css/chunk-vendors.e469b508.css" rel="preload" as="style"><link href="/js/app.bf5252c9.js" rel="preload" as="script"><link href="/js/chunk-vendors.d8d18fe6.js" rel="preload" as="script"><link href="/css/chunk-vendors.e469b508.css" rel="stylesheet"><link href="/css/app.f8f5dc61.css" rel="stylesheet"></head><body><div id="app"></div><script src="/js/chunk-vendors.d8d18fe6.js"></script><script src="/js/app.bf5252c9.js"></script></body></html>

2
dist/js/app.9dd85a85.js

File diff suppressed because one or more lines are too long

1
dist/js/app.9dd85a85.js.map

File diff suppressed because one or more lines are too long

2
dist/js/app.bf5252c9.js

File diff suppressed because one or more lines are too long

1
dist/js/app.bf5252c9.js.map

File diff suppressed because one or more lines are too long

17
src/components/mynetwork/mytable.vue

@ -290,19 +290,23 @@ export default {
//var Localpath = JSON.parse(log.data.test)
var info=`<h5>You can connect to the same contained process multiple times simultaneously, from different sessions on the Docker host.<br>
<br>
<b>Open a terminal and Run:</b>
<b>Open a terminal and Run*:</b>
<br>
<br>
`
if(container_user){
info +='<p class="text-success">'
info += 'docker exec -it -u'+container_user_swarmlab+' '+this.hybridshowdata.Names+' ' + container_bash
info +='</p>'
}else{
info +='<p class="text-success">'
info += 'docker exec -it '+this.hybridshowdata.Names+' ' + container_bash
info +='</p>'
}
info +='<p class="text-secondary">'
info +=' <b>Directory Maps</b>'
info +='<br>'
info +='<br>'
info +=' Directory Maps'
info +=' <table>'
info +='<tr><td><b>Local</b></td><td><i>Container</i></td></tr>'
var datajson = log.data.test[0]
@ -310,11 +314,16 @@ info +='<tr><td><b>Local</b></td><td><i>Container</i></td></tr>'
//console.log('test1 '+JSON.stringify(datajson[i]))
if(datajson[i].Type == 'bind'){
info +='<tr><td><b>'+datajson[i].Source+' </b></td><td><i>' + datajson[i].Destination+' </i></td></tr>'
info +='<tr style="outline: thin solid"><td><b>'+datajson[i].Source+' </b></td><td><i>' + datajson[i].Destination+' </i></td></tr>'
}
}
info +=' </table>'
info +='</p>'
info +='</h5><br>'
info +='<br>'
info +='<b>*</b> App with GUI: xhost +local:docker <br>'
info +='<br>'
info +='This permits the docker user on the local machine to connect to X windows display.<br>'
//console.log('test1 '+JSON.stringify(this.hybridshowdata))
this.$swal({

Loading…
Cancel
Save