0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【メモ】毎回調べるのが面倒なので自分が使っているツールのアップグレード法をまとめてみた

Posted at

はじめに

OS: Ubuntu22.04

あくまで自分の環境ですのでご容赦ください。

Docker

sudo apt upgrade docker

バージョン確認

// 詳細を確認ができる
docker version
// 簡易
docker --version

minikube

curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 \
   && sudo install minikube-linux-amd64 /usr/local/bin/minikube

アップデート情報確認

minikube update-check

バージョン確認

minikube version

skaffold

curl -Lo skaffold https://storage.googleapis.com/skaffold/releases/latest/skaffold-linux-amd64 && \
sudo install skaffold /usr/local/bin/

バージョン確認

skaffold version

npm

npm install -g npm@latest

バージョン確認

npm --version

yarn

npm -g uninstall yarn
npm -g install yarn
yarn --version

最後に

ひとまずよく使うツールについてまとめてみました。
なにかアップグレードするたびに書き足していきます。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?