diff --git a/.drone.yml b/.drone.yml index be27ae9..7872888 100644 --- a/.drone.yml +++ b/.drone.yml @@ -15,11 +15,10 @@ environment: steps: - name: build image - image: thegeeklab/drone-docker-buildx + image: plugins/docker commands: - cd /drone/src/ - - docker buildx create --name mybuilder --use --bootstrap - - docker buildx build --platform linux/amd64,linux/arm64 --tag $${REGISTRY_SERVER_NAME}/$${IMAGE_NAME} -f Dockerfile . + - docker build --platform linux/amd64 --tag $${REGISTRY_SERVER_NAME}/$${IMAGE_NAME} -f Dockerfile . - docker push $${REGISTRY_SERVER_NAME}/$${IMAGE_NAME} when: branch: diff --git a/index.html b/index.html index cf6ca30..d8f0310 100644 --- a/index.html +++ b/index.html @@ -11,6 +11,8 @@ +
+
@@ -136,10 +138,10 @@
- - +
+ diff --git a/install.php b/install.php index 50ae14f..f9c8059 100644 --- a/install.php +++ b/install.php @@ -17,7 +17,6 @@ else { putenv('LOCAL_PROXY=no'); } - // TODO - js warning //if [ "$SMARTHOST_PROXY" == "no" ]; then // echo "Warning! Local proxy will not work without smarthost proxy service."; @@ -41,4 +40,8 @@ putenv('DISCOVERY='.$_POST["discovery"]); putenv('ADDITIONAL='.$_POST["additional"]); +// check ENV variables +$output = shell_exec("set"); +echo $output; + ?>