Browse Source

add ttyd

master
zeus 2 years ago
parent
commit
fa487bf450
  1. 2
      dist/index.html
  2. 2
      dist/js/app.64c05c96.js
  3. 1
      dist/js/app.64c05c96.js.map
  4. 2
      dist/js/app.8f8d6e80.js
  5. 1
      dist/js/app.8f8d6e80.js.map
  6. 4
      run.yml.sh
  7. 20
      src/config/index-web.js

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.25658f84.css" rel="preload" as="style"><link href="/css/chunk-vendors.e469b508.css" rel="preload" as="style"><link href="/js/app.64c05c96.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.25658f84.css" rel="stylesheet"></head><body><div id="app"></div><script src="/js/chunk-vendors.d8d18fe6.js"></script><script src="/js/app.64c05c96.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.25658f84.css" rel="preload" as="style"><link href="/css/chunk-vendors.e469b508.css" rel="preload" as="style"><link href="/js/app.8f8d6e80.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.25658f84.css" rel="stylesheet"></head><body><div id="app"></div><script src="/js/chunk-vendors.d8d18fe6.js"></script><script src="/js/app.8f8d6e80.js"></script></body></html>

2
dist/js/app.64c05c96.js

File diff suppressed because one or more lines are too long

1
dist/js/app.64c05c96.js.map

File diff suppressed because one or more lines are too long

2
dist/js/app.8f8d6e80.js

File diff suppressed because one or more lines are too long

1
dist/js/app.8f8d6e80.js.map

File diff suppressed because one or more lines are too long

4
run.yml.sh

@ -27,6 +27,10 @@ fi
docker rmi swarmlabadmin > /dev/null 2>&1
docker container rm swarmlabadmin > /dev/null 2>&1
docker stop swarmlab-volumemanager-agent swarmlab-filemanager-agent swarmlab-editor-agent swarmlabadmin > /dev/null 2>&1
docker container rm swarmlab-volumemanager-agent swarmlab-filemanager-agent swarmlab-editor-agent swarmlabadmin > /dev/null 2>&1
env nodepath=$PWD \
USER_NAME=${USER} \
USER_ID=$(id -u ${USER}) \

20
src/config/index-web.js

@ -6,7 +6,7 @@ export const ApiConfigWEB = [
"app": true,
"url": 'http',
"port": '9001/tcp',
"ttyd": false,
"ttyd": true,
"ttydport": "3787/tcp",
"ttydurl": 'http'
},
@ -171,5 +171,23 @@ export const ApiConfigWEB = [
"ttyd": true,
"ttydport": "3787/tcp",
"ttydurl": 'http'
},
{
"name": "microservice-mongoserver",
"app": false,
"url": 'http',
"port": "80/tcp",
"ttyd": true,
"ttydport": "3787/tcp",
"ttydurl": 'http'
},
{
"name": "microservice-filemanager",
"app": false,
"url": 'http',
"port": "80/tcp",
"ttyd": true,
"ttydport": "3787/tcp",
"ttydurl": 'http'
}
];

Loading…
Cancel
Save