Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make also MinIO Client available on Gitpod Instance #144

Merged
merged 1 commit into from
Jan 30, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitpod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,17 @@ tasks:
wget https://releases.hashicorp.com/terraform/${TERRAFORM_VERSION}/${TERRAFORM_DOWNLOAD_FILE_NAME} &&
unzip ${TERRAFORM_DOWNLOAD_FILE_NAME} &&
rm ${TERRAFORM_DOWNLOAD_FILE_NAME} &&
wget https://dl.min.io/client/mc/release/linux-amd64/mc &&
chmod +x mc &&
sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b .
command: |
sudo mv terraform /usr/local/bin/terraform
sudo mv mc /usr/local/bin/mc
sudo mv task /usr/local/bin/task
go get -v -t -d ./...
task install
gp await-port 9000 && gp await-port 8080 && gp await-port 8000
mc alias set local http://localhost:9000 minio minio123 && echo "MinIO Local Server Stats:" && mc admin info local

ports:
- port: 9000
Expand Down