Skip to content
This repository has been archived by the owner on Jul 10, 2019. It is now read-only.

docker imageを作成して起動するまで

Yoshiyuki Hisamatsu edited this page Apr 8, 2019 · 1 revision

docker image の作成

$ docker build -t typescript-nuxtjs .

docker image の起動

$ docker run -d -p 3333:3333 typescript-nuxtjs

docker process の CONTAINER ID を取得

$ docker ps

docker コンテナを停止

$ docker stop CONTAINER ID