#dockertoolbox
Explore tagged Tumblr posts
h2smedia · 5 years ago
Text
How to install Docker on Windows 10 or 7 without Hyper-V
Tumblr media
Do you want to install Docker on Windows 10/8/7 or server without enabling the Hyper-V (Hypervisor Platform)? Then here is the tutorial, the easiest way to start a Docker container on Windows... Docker, an open-source platform offers containerized virtual machines to run various apps and operating systems in an isolated environment. As compared to other virtual machines software, the Docker is lightweight, and images on it use the system's kernel to provide optimized speed. Moreover, the images meant to run on it are also stripped down or very light, for example, Ubuntu Image which is far small in size and lighter as compared to regular Ubuntu server CLI ISO available online to download and use. In terms of version, Docker offers two editions one is Enterprise and the other community that is open-source software. Although the open-source which is free to use has all the functions required to operate containers and can be used on servers and on development to test machines; the things which make it different from the Enterprise version are the support and some management functions to also use them in productive operations. So, if you don't want to enable Hyper-V in order to preserve Virtualization support to other software such as VirtualBox or Vmware workstation player then here is the simple way to install Docker-CE on Windows 10 or 7 using the Docker ToolBox. Read the full article
0 notes
masaa-ma · 8 years ago
Text
historian - Bashの実行履歴をデータベースへ
from http://www.moongift.jp/2017/05/historian-bash%e3%81%ae%e5%ae%9f%e8%a1%8c%e5%b1%a5%e6%ad%b4%e3%82%92%e3%83%87%e3%83%bc%e3%82%bf%e3%83%99%e3%83%bc%e3%82%b9%e3%81%b8/
プログラマであればターミナルをよく使うはずです。そんな時の実行履歴は.bash_historyなどに蓄積されますが、過去に実行した履歴を確認する際にはgrepを使って行うのが一般的です。しかし前時代的ですよね。
そこで使ってみたいのがhistorianです。実行履歴をSQLiteに蓄積するソフトウェ���です。
historianの使い方
最初に hist import コマンドで .bash_history の中身をSQLiteに取り込みます。
後は searchであったり/で検索できます。
$ hist search docker 49 chown -R nakatsugawa:staff .atom .emacs.d .emacs.el .ssh .aws .docker 48 sudo cp -r -f .atom .emacs.d .emacs.el .ssh .aws .docker ~/ 39 cp -r .atom .emacs.d .emacs.el .ssh .aws .docker ~/ & 36 brew cask install dockertoolbox 35 brew cask install docker-toolbox
今のところ検索機能くらいしかないのでgrepと殆ど変わりませんが、データベースになっていればファイルベースとはまた異なる使い道がありそうです。現在はBashのみですが、他のシェルにも対応予定とのことです。
historianはBashスクリプト製のオープンソース・ソフトウェア(New BSD License)です。
jcsalterego/historian: Command-line utility for managing shell history in a SQLite database.
0 notes
night-finance-site-blog · 8 years ago
Text
wp コマンドから立ち上げ wp scpでアップロード docker インストールdockertoolbox,virtualbox/docker yum install (docker pull wordpress)/dockerfile docker run mkdir my_wpcd my_wptouch docker-compose.yml version: '2' services:   db:     image: mysql:5.7     volumes:       - "./.data/db:/var/lib/mysql"     restart: always     environment:       MYSQL_ROOT_PASSWORD: wordpress       MYSQL_DATABASE: wordpress       MYSQL_USER: wordpress       MYSQL_PASSWORD: wordpress   wordpress:     depends_on:       - db     image: wordpress:latest     links:       - db     ports:       - "8000:80"     restart: always     environment:       WORDPRESS_DB_HOST: db:3306       WORDPRESS_DB_PASSWORD: wordpress docker-compose up -d docker-machine ip machineNamehttp://machineIP:8000
0 notes