new sub domain / redirection
All checks were successful
Deploy App / deploy (push) Successful in 1m52s
All checks were successful
Deploy App / deploy (push) Successful in 1m52s
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
const isClicked = ref(false)
|
||||
const copyToClipBoard = () => {
|
||||
navigator.clipboard
|
||||
.writeText('curl -sL dockerweb.valere.dev | sudo bash')
|
||||
.writeText('curl -sL getdweb.valere.dev | sudo bash')
|
||||
.then(() => {
|
||||
isClicked.value = true
|
||||
setTimeout(() => {
|
||||
@@ -20,7 +20,7 @@ const copyToClipBoard = () => {
|
||||
</a>
|
||||
<div
|
||||
class="font-mono bg-neutral-900 text-neutral-50 rounded-xl flex justify-between items-center pl-3 pr-4 py-4 sm:ml-4 border border-transparent text-base shadow-primary-700 relative">
|
||||
<span class="select-all"> curl -L dockerweb.valere.dev | sudo bash </span>
|
||||
<span class="select-all"> curl -L getdweb.valere.dev | sudo bash </span>
|
||||
<SvgClipboard class="ml-3 cursor-pointer" :class="{ 'animate-ping': isClicked }" @click="copyToClipBoard" />
|
||||
</div>
|
||||
</section>
|
||||
|
@@ -1,6 +1,6 @@
|
||||
#!/bin/bash
|
||||
export REPO_NAME="docker-website"
|
||||
export DOMAIN="docker-website.valere.dev"
|
||||
export DOMAIN="docker-web.valere.dev"
|
||||
export PORT="7900"
|
||||
export PORT_EXPOSED="3000"
|
||||
export REDIRECTIONS="dockerweb.valere.dev->https://raw.githubusercontent.com/docker-web/docker-web/master/install.sh"
|
||||
export REDIRECTIONS="getdweb.valere.dev->https://raw.githubusercontent.com/docker-web/docker-web/master/install.sh"
|
||||
|
Reference in New Issue
Block a user