da8ma / docker-python

Manage python runtime environment and libraries used in a Docker container

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docker-python

コンテナ作成方法

git clone https://github.com/kino-code/docker-python.git (ディレクトリ名を記述)
cd (ディレクトリ名を記述)
docker-compose up --build -d

コンテナ停止方法

コンテナを削除せずに停止
docker-compose stop

コンテナの停止、 及び up で作成したサービス用コンテナ、ネットワークを削除
docker-compose down

Dockerの全削除の方法

Dockerのイメージやコンテナを削除します。下記を上から下まで実行した上で、それを3回繰り返してください。
他のイメージやコンテナも削除されるのでそれをしっかり理解した上で使いましょう。
docker image prune -af
docker volume prune -f
docker container prune -f
docker system prune -f

About

Manage python runtime environment and libraries used in a Docker container


Languages

Language:Dockerfile 100.0%