- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 53 for Chmod (0.03 sec)
-
Dockerfile
FROM minio/minio:latest RUN chmod -R 777 /usr/bin COPY ./minio /usr/bin/minio COPY dockerscripts/docker-entrypoint.sh /usr/bin/docker-entrypoint.sh ENTRYPOINT ["/usr/bin/docker-entrypoint.sh"] VOLUME ["/data"]
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 15 23:10:23 UTC 2024 - 229 bytes - Viewed (0) -
bin/build_ztunnel.sh
mkdir -p "$(dirname "$2")" pushd "$(dirname "$2")" # Download and make the binary executable echo "Downloading ztunnel: $1 to $2" time ${DOWNLOAD_COMMAND} --header "${AUTH_HEADER:-}" "$1" > "$2" chmod +x "$2" # Make a copy named just "ztunnel" in the same directory (overwrite if necessary). echo "Copying $2 to $(dirname "$2")/${3}" cp -f "$2" "$(dirname "$2")/${3}" popd
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Tue Apr 02 21:46:06 UTC 2024 - 5K bytes - Viewed (0) -
.github/workflows/multipart/migrate.sh
docker volume prune -f || true docker volume rm $(docker volume ls -q -f dangling=true) || true } cleanup if [ ! -f ./mc ]; then wget --quiet -O mc https://dl.minio.io/client/mc/release/linux-amd64/mc && chmod +x mc fi export RELEASE=RELEASE.2023-08-29T23-07-35Z docker-compose -f docker-compose-site1.yaml up -d docker-compose -f docker-compose-site2.yaml up -d sleep 30s
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon May 27 19:17:46 UTC 2024 - 4.3K bytes - Viewed (0) -
docs/bucket/replication/test_del_marker_proxying.sh
"http://127.0.0.1:9004/tmp/siteb/data/disterasure/xl{5...8}" >/tmp/siteb_2.log 2>&1 & echo "done" if [ ! -f ./mc ]; then wget --quiet -O mc https://dl.minio.io/client/mc/release/linux-amd64/mc && chmod +x mc fi export MC_HOST_sitea=http://minioadmin:minioadmin@127.0.0.1:9001 export MC_HOST_siteb=http://minioadmin:minioadmin@127.0.0.1:9004 ./mc ready sitea ./mc ready siteb ./mc mb sitea/bucket
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Sep 29 22:40:36 UTC 2024 - 2.2K bytes - Viewed (0) -
docs/distributed/iam-import-with-openid.sh
export MC_HOST_myminio1="http://dillon-service-2:dillon-service-2@localhost:22000" # Start MinIO instance export CI=true if [ ! -f ./mc ]; then wget --quiet -O mc https://dl.minio.io/client/mc/release/linux-amd64/mc && chmod +x mc fi mc -v # Start openid server ( cd ./minio-iam-testing make docker-images make docker-run cd - )
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 17 16:45:46 UTC 2024 - 2.3K bytes - Viewed (0) -
src/bootstrap.bash
echo "$targ already exists; remove before continuing" exit 2 fi unset GOROOT src=$(cd .. && pwd) echo "#### Copying to $targ" cp -Rp "$src" "$targ" cd "$targ" echo echo "#### Cleaning $targ" chmod -R +w . rm -f .gitignore if [ -e .git ]; then git clean -f -d fi echo echo "#### Building $targ" echo cd src ./make.bash --no-banner $forceflag gohostos="$(../bin/go env GOHOSTOS)"
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Fri Jan 20 17:52:26 UTC 2023 - 2.3K bytes - Viewed (0) -
docs/bucket/versioning/versioning-tests.sh
unset MINIO_KMS_KES_CERT_FILE unset MINIO_KMS_KES_KEY_FILE unset MINIO_KMS_KES_ENDPOINT unset MINIO_KMS_KES_KEY_NAME if [ ! -f ./mc ]; then wget -O mc https://dl.minio.io/client/mc/release/linux-amd64/mc && chmod +x mc fi minio server -S /tmp/no-certs --address ":9001" "http://localhost:9001/tmp/multisitea/data/disterasure/xl{1...4}" \ "http://localhost:9002/tmp/multisitea/data/disterasure/xl{5...8}" >/tmp/sitea_1.log 2>&1 &
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Sep 06 09:42:21 UTC 2024 - 2.5K bytes - Viewed (0) -
bin/update_deps.sh
export GO111MODULE=on go get -u "istio.io/api@${UPDATE_BRANCH}" go get -u "istio.io/client-go@${UPDATE_BRANCH}" go mod tidy sed -i "s/^BUILDER_SHA=.*\$/BUILDER_SHA=$(getSha release-builder)/" prow/release-commit.sh chmod +x prow/release-commit.sh
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu May 09 00:17:51 UTC 2024 - 1.6K bytes - Viewed (0) -
buildscripts/verify-build.sh
echo "failed to download https://raw.githubusercontent.com/minio/mc/master/functional-tests.sh" exit 1 fi sed -i 's|-sS|-sSg|g' "$FUNCTIONAL_TESTS" chmod a+x "$FUNCTIONAL_TESTS" } function main() { echo "Testing in FS setup" if ! run_test_fs; then echo "FAILED" purge "$WORK_DIR" exit 1 fi echo "Testing in Erasure setup"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri May 24 19:28:51 UTC 2024 - 6.7K bytes - Viewed (0) -
buildscripts/rewrite-old-new.sh
exit 1 fi function download_old_release() { if [ ! -f minio.RELEASE.2020-10-28T08-16-50Z ]; then curl --silent -O https://dl.minio.io/server/minio/release/linux-amd64/archive/minio.RELEASE.2020-10-28T08-16-50Z chmod a+x minio.RELEASE.2020-10-28T08-16-50Z fi } function verify_rewrite() { start_port=$1 export MINIO_ACCESS_KEY=minio export MINIO_SECRET_KEY=minio123
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon May 27 19:17:46 UTC 2024 - 3.4K bytes - Viewed (0)