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?

amazonlinuxのDockerイメージでsudoコマンドを使用可能な状態にして起動するワンライナー

Posted at

モチベーション

本来のEC2で実行するのと同じようなコマンドを書いたshスクリプトを実行したいのですが、EC2に繋いだときにはsudoが必要なのにDockerイメージとして実行するとsudoがないのでうまく実行できないのが動きとして気に食わなかったので、以下のようなコマンドを実行する事で回避しました。

みんな大好きワンライナーで書けました。

docker run --rm -it -v `pwd`:/app -w /app amazonlinux:2023 bash -c "yum update -y && yum install -y sudo && exec bash"
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?