Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 445 Bytes

README.md

File metadata and controls

29 lines (23 loc) · 445 Bytes

docker-python-handson

Based on https://qiita.com/jhorikawa_err/items/fb9c03c0982c29c5b6d5

Docker Command

# build
$ docker-compose up -d --build

# down
$ docker-compose down

Into to container

# python3 server
$ docker-compose exec python3 bash

test

# Hello world
$ docker compose exec python3 python src/sample.py

Ruine the world

$  docker-compose down --rmi all --volumes --remove-orphans