Dockerコンテナの作成、起動〜停止まで - Qiita 2015
Dockerライトユーザーの為のコマンド一覧 - Qiita 2017
コンテナに入る
docker exec -it [コンテナ名] /bin/bash
command line interface - How do I edit a file after I shell to a Docker container? - Stack Overflow
apt-get install vim-tiny
【超簡単】Docker でモダンな PHP 開発環境を作る (PHP, MySQL, PHP-FPM, nginx, memcached) - イケてる SaaS を作りたい (koni blog)
コンテナを自動起動
https://docs.docker.jp/config/container/start-containers-automatically.html
docker inspect -f "{{.Name}} {{.HostConfig.RestartPolicy.Name}}" $(docker ps -aq)