From 2727ada130dd06e8fb9e0f39186b51238a6e5868 Mon Sep 17 00:00:00 2001 From: Robin Date: Tue, 15 Mar 2022 23:16:06 +0100 Subject: [PATCH] delete deploy script --- deploy.sh | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100755 deploy.sh diff --git a/deploy.sh b/deploy.sh deleted file mode 100755 index 6048603..0000000 --- a/deploy.sh +++ /dev/null @@ -1,21 +0,0 @@ -#!/bin/bash - -# Before running this, you need to install binfmt_misc support and create a builder: -# docker run --privileged --rm tonistiigi/binfmt --install all -# docker buildx create --use --name mybuilder -# https://github.com/docker/buildx -set -e - -docker buildx build \ - -t namelessmc/nginx:dev \ - --platform=linux/amd64,linux/arm,linux/arm64 nginx_web --push - -deploy_php(){ - docker buildx build \ - -t namelessmc/php:$1 \ - --build-arg PHP_VERSION=$2 --build-arg VERSION=$3 \ - --platform=linux/amd64,linux/arm64 php_fpm --push -} - -# Tag PHP NamelessMC -deploy_php dev 8.1 v2