pegaz -> docker-web

This commit is contained in:
valere
2024-08-21 12:54:47 +02:00
parent 5294e3f595
commit 2a65d345f1
31 changed files with 253 additions and 1574 deletions

View File

@@ -42,9 +42,9 @@ export default {
let i = 0
this.timer = setInterval(async () => {
// pegaz backup
// docker-web backup
if (i === 0) {
const cmd = '$ pegaz backup\n'
const cmd = '$ docker-web backup\n'
for (const y in cmd) {
this.terminalContent += cmd[y]
await this.delay(20)
@@ -75,7 +75,7 @@ export default {
if (i === 4) { this.terminalContent += 'Unpausing apps ... done\n' }
if (i === 5) { this.terminalContent += '[√] apps backup done\n' }
// pegaz restore
// docker-web restore
// this.progressClass = 'w-0'
// this.startApps = 'w-full'
@@ -84,7 +84,7 @@ export default {
if (i === 7) { this.progressClass = 'w-0' }
if (i === 8) {
const cmd = '$ pegaz restore\n'
const cmd = '$ docker-web restore\n'
for (const y in cmd) {
this.terminalContent += cmd[y]
await this.delay(20)
@@ -132,7 +132,7 @@ export default {
<h2 class="title">
Backup & restore
</h2>
<section class="pegaz-section">
<section class="docker-web-section">
<Terminal :terminal-content="terminalContent" />
<div
class="flex flex-col items-center md:w-3/4 lg:w-1/2 h-20 relative rounded-b-xl transition-all"