5
10

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 3 years have passed since last update.

難しい事はわからないけど Docker 上で python を動かしてみる

Posted at

公式サイトからDockerをダウンロードして起動する。
https://docs.docker.com/docker-for-mac/install/

インストールできたらバージョンを確認してみます。

$ docker --version
Docker version 20.10.0, build 7287ab3

Docker hub から python3.8 が使えるイメージをダウンロードします。

docker pull python:3.8

カレントディレクトリにappフォルダを作成し、そこにpython用のファイルを作成

ディレクトリ構成
└ app
   └ hello.py
hello.py
print ("Hello, Python")

dockerコンテナ(コンテナ名:test)を起動する

docker run -it  -v $PWD/app:/tmp/work --name test python:3.8 /bin/bash

用意したコードを実行する

root:/# cd tmp/work/
root:/tmp/work# python hello.py 
実行結果
Hello, Python

ホストでコードを修正して、実行する

hello.py
print ("Hello, Python on Docker")
実行結果
Hello, Python on Docker
5
10
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
5
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?