docker hands-on guide: How to map local folder to docker container on windows?

Assume you work on windows on daily base, want to get benefit from docker container using docker toolbox for test and dev purpose. run docker container on windows There are two options to run docker container on windows: run docker container directly from local window shell, like msys or cygwin …

portabledevops deploy script

This is new portabledevops deploy script, to faster the portabledevops setup. place all-in-one portable customization setting to msys2/cygwin /etc/profile.d install docker toolbox locally to msys2/cygwin setup.sh deploy script running log sample launch msys2/cygwin bash shell from cmder or console $ cd ~ ; wget -qO- ‘https://raw.githubusercontent.com/robertluwang/portabledevops/master/setup.sh’ | sh Cloning into …

vagrant to boot up ubuntu 16.10

find out vagrant box for latest release Ubuntu 16.10 (Yakkety Yak) search Yakkety Yak from https://atlas.hashicorp.com/ubuntu will find below box: https://atlas.hashicorp.com/ubuntu/boxes/yakkety64 will see command for virtualbox: vagrant init ubuntu/yakkety64; vagrant up –provider virtualbox vagrant up $ cd ~/vagrant $ vagrant init ubuntu/yakkety64; vagrant up –provider virtualbox A Vagrantfile has been …

Portable vagrant on msys/cygwin

Vagrant is must have devops tool to quick build up dev , ops, test env. Here is practice how to make it portable on windows. 1) download and install to C:\Vagrant https://www.vagrantup.com/downloads.html 2) assume you have portable msys2 and cygwin, if not you can refer portabledevops. L:\portabledevops\msys64 L:\portabledevops\cygwin64 3) move …

The git/msys mount issue

When mount the mount point from /etc/fstab, it is not working well, mount issue # mount point L:/oldhorse/test /test $ mount /test mount: cannot find /test in /etc/fstab or in /etc/fstab.d/$USER But it works when manually type here, $ mount L:/oldhorse/test /test $ mount | grep test L:/oldhorse/test on /test …

Portable Docker Toolbox for Windows with Cmder/Console2+msys

Docker Toolbox for Windows is tool set for both docker machine and docker client: docker-machine docker portable docker for windows Here is solution to make it portable with USB driver, precondition: portable msys + Git portable Cmder/Console2 1) First for all, install Docker Toolbox for Windows without VirtualBox and Git …

How Docker Toolbox for Windows working with Cmder/Console2+msys

This is error when start docker with my own msys bash from shortcut or Cmder/Console2 task tab, Docker Machine is not installed. Please re-run the Toolbox Installer and try again. Looks like something went wrong in step A’Looking for vboxmanage.exeA’… Press any key to continue… Looks like some issue in …

How cmdermini working with msys

There are two versions of cmder: cmder with Git and cmdermini without Git, I prefer use cmdermini without Git since I already have portable git, however it is nothing when run as cmdermini, it is pure cmd replacement, cannot run UNIX like shell. cmdermini https://github.com/cmderdev/cmder/releases/download/v1.2.9/cmder_mini.zip best windows cmd.exe replacement msys …