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

@@ -75,7 +75,7 @@ export default {
// nextcloud
// up
if (i === 0) {
const cmd = '$ pegaz up nextcloud\n'
const cmd = '$ docker-web up nextcloud\n'
for (const y in cmd) {
this.terminalContent += cmd[y]
await delay(20)
@@ -106,7 +106,7 @@ export default {
// jellyfin
// up
if (i === 11) {
const cmd = '$ pegaz up jellyfin\n'
const cmd = '$ docker-web up jellyfin\n'
for (const y in cmd) {
this.terminalContent += cmd[y]
await delay(20)
@@ -136,7 +136,7 @@ export default {
// nextcloud down
if (i === 23) {
const cmd = '$ pegaz down\n'
const cmd = '$ docker-web down\n'
for (const y in cmd) {
this.terminalContent += cmd[y]
await delay(20)
@@ -164,7 +164,7 @@ export default {
</script>
<template>
<section class="pegaz-section">
<section class="docker-web-section">
<Terminal :terminal-content="terminalContent" />
<div
class="bg-slate-400 flex flex-col items-center relative rounded-2xl w-full m-0 md:min-w-fit max-w-2xl md:-ml-8 md:z-0 overflow-hidden"