4
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?

More than 1 year has passed since last update.

OCI Container Instanceを試してみる

Posted at

はじめに

OCIの新しいサービスとしてContainer InstanceがGAになったので、早速試してみます。

Instance のプロビジョニング

OCIコンソールから開発者サービス → コンテナ・インスタンスを選択します。

スクリーンショット 2022-12-07 11.01.21.png

コンテナインスタンスの作成をクリックします。

スクリーンショット 2022-12-07 11.01.39.png

今回はこのように設定しました。をクリックします。

スクリーンショット 2022-12-07 11.03.13.png

Build済みのコンテナイメージを指定します。
今回はパブリックのnginxを使用します。

イメージの選択 →  をクリックします。

スクリーンショット 2022-12-07 11.05.25.png

作成をクリックします。

スクリーンショット 2022-12-07 11.05.56.png

しばらく待つと、インスタンスとコンテナがプロビジョニングされます。

スクリーンショット 2022-12-07 17.21.50.png

動作確認

外部からコンテナ(nginx)にアクセスします。

curl http://132.145.xxx.xxx
<!DOCTYPE html>
<html>
<head>
<title>Welcome to nginx!</title>
<style>
html { color-scheme: light dark; }
body { width: 35em; margin: 0 auto;
font-family: Tahoma, Verdana, Arial, sans-serif; }
</style>
</head>
<body>
<h1>Welcome to nginx!</h1>
<p>If you see this page, the nginx web server is successfully installed and
working. Further configuration is required.</p>

<p>For online documentation and support please refer to
<a href="http://nginx.org/">nginx.org</a>.<br/>
Commercial support is available at
<a href="http://nginx.com/">nginx.com</a>.</p>

<p><em>Thank you for using nginx.</em></p>
</body>
</html>
4
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
4
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?