🔥 Remove old unused scripts (#2107)

This commit is contained in:
Sebastián Ramírez
2026-01-22 08:30:07 -08:00
committed by GitHub
parent 1f332b89b4
commit 540766b961
3 changed files with 0 additions and 35 deletions

View File

@@ -1,10 +0,0 @@
#! /usr/bin/env sh
# Exit in case of error
set -e
TAG=${TAG?Variable not set} \
FRONTEND_ENV=${FRONTEND_ENV-production} \
sh ./scripts/build.sh
docker compose -f compose.yml push

View File

@@ -1,10 +0,0 @@
#! /usr/bin/env sh
# Exit in case of error
set -e
TAG=${TAG?Variable not set} \
FRONTEND_ENV=${FRONTEND_ENV-production} \
docker-compose \
-f compose.yml \
build

View File

@@ -1,15 +0,0 @@
#! /usr/bin/env sh
# Exit in case of error
set -e
DOMAIN=${DOMAIN?Variable not set} \
STACK_NAME=${STACK_NAME?Variable not set} \
TAG=${TAG?Variable not set} \
docker-compose \
-f compose.yml \
config > docker-stack.yml
docker-auto-labels docker-stack.yml
docker stack deploy -c docker-stack.yml --with-registry-auth "${STACK_NAME?Variable not set}"