failing to start a docker image

180 views
Skip to first unread message

Asif Iqbal

unread,
Dec 8, 2016, 11:23:49 PM12/8/16
to Vagrant
$ cat Vagrantfile 
Vagrant.configure("2") do |config|
  
  config.vm.provider "docker" do |d|
    d.image = "centos"
    d.has_ssh = true
  end
end

$ vagrant up --provider=docker 
Bringing machine 'default' up with 'docker' provider...
==> default: Vagrant has noticed that the synced folder definitions have changed.
==> default: With Docker, these synced folder changes won't take effect until you
==> default: destroy the container and recreate it.
==> default: Starting container...
==> default: Waiting for container to enter "running" state...
The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end

$ vagrant up --debug --provider=docker 2>&1 >OUT
 INFO global: Vagrant version: 1.9.1
 INFO global: Ruby version: 2.2.5
 INFO global: RubyGems version: 2.4.5.1
 INFO global: VAGRANT_OLD_ENV_G_BROKEN_FILENAMES="1"
 INFO global: VAGRANT_OLD_ENV_USER="iqbala"
 INFO global: VAGRANT_OLD_ENV__="/opt/vagrant/bin/vagrant"
 INFO global: VAGRANT_OLD_ENV_LS_COLORS="rs=0:di=38;5;27:ln=38;5;51:mh=44;38;5;15:pi=40;38;5;11:so=38;5;13:do=38;5;5:bd=48;5;232;38;5;11:cd=48;5;232;38;5;3:or=48;5;232;38;5;9:mi=05;48;5;232;38;5;15:su=48;5;196;38;5;15:sg=48;5;11;38;5;16:ca=48;5;196;38;5;226:tw=48;5;10;38;5;16:ow=48;5;10;38;5;21:st=48;5;21;38;5;15:ex=38;5;34:*.tar=38;5;9:*.tgz=38;5;9:*.arj=38;5;9:*.taz=38;5;9:*.lzh=38;5;9:*.lzma=38;5;9:*.tlz=38;5;9:*.txz=38;5;9:*.zip=38;5;9:*.z=38;5;9:*.Z=38;5;9:*.dz=38;5;9:*.gz=38;5;9:*.lz=38;5;9:*.xz=38;5;9:*.bz2=38;5;9:*.tbz=38;5;9:*.tbz2=38;5;9:*.bz=38;5;9:*.tz=38;5;9:*.deb=38;5;9:*.rpm=38;5;9:*.jar=38;5;9:*.rar=38;5;9:*.ace=38;5;9:*.zoo=38;5;9:*.cpio=38;5;9:*.7z=38;5;9:*.rz=38;5;9:*.jpg=38;5;13:*.jpeg=38;5;13:*.gif=38;5;13:*.bmp=38;5;13:*.pbm=38;5;13:*.pgm=38;5;13:*.ppm=38;5;13:*.tga=38;5;13:*.xbm=38;5;13:*.xpm=38;5;13:*.tif=38;5;13:*.tiff=38;5;13:*.png=38;5;13:*.svg=38;5;13:*.svgz=38;5;13:*.mng=38;5;13:*.pcx=38;5;13:*.mov=38;5;13:*.mpg=38;5;13:*.mpeg=38;5;13:*.m2v=38;5;13:*.mkv=38;5;13:*.ogm=38;5;13:*.mp4=38;5;13:*.m4v=38;5;13:*.mp4v=38;5;13:*.vob=38;5;13:*.qt=38;5;13:*.nuv=38;5;13:*.wmv=38;5;13:*.asf=38;5;13:*.rm=38;5;13:*.rmvb=38;5;13:*.flc=38;5;13:*.avi=38;5;13:*.fli=38;5;13:*.flv=38;5;13:*.gl=38;5;13:*.dl=38;5;13:*.xcf=38;5;13:*.xwd=38;5;13:*.yuv=38;5;13:*.cgm=38;5;13:*.emf=38;5;13:*.axv=38;5;13:*.anx=38;5;13:*.ogv=38;5;13:*.ogx=38;5;13:*.aac=38;5;45:*.au=38;5;45:*.flac=38;5;45:*.mid=38;5;45:*.midi=38;5;45:*.mka=38;5;45:*.mp3=38;5;45:*.mpc=38;5;45:*.ogg=38;5;45:*.ra=38;5;45:*.wav=38;5;45:*.axa=38;5;45:*.oga=38;5;45:*.spx=38;5;45:*.xspf=38;5;45:"
 INFO global: VAGRANT_OLD_ENV_CVS_RSH="ssh"
 INFO global: VAGRANT_INSTALLER_VERSION="2"
 INFO global: VAGRANT_OLD_ENV_PWD="/home/iqbala/vagrant/centos"
 INFO global: VAGRANT_OLD_ENV_SHLVL="2"
 INFO global: VAGRANT_OLD_ENV_SSH_TTY="/dev/pts/0"
 INFO global: VAGRANT_OLD_ENV_PATH="/usr/lib64/qt-3.3/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin:/home/iqbala/bin"
 INFO global: VAGRANT_OLD_ENV_MAIL="/var/spool/mail/iqbala"
 INFO global: VAGRANT_OLD_ENV_QTDIR="/usr/lib64/qt-3.3"
 INFO global: VAGRANT_OLD_ENV_QTINC="/usr/lib64/qt-3.3/include"
 INFO global: VAGRANT_OLD_ENV_HOME="/home/iqbala"
 INFO global: VAGRANT_INSTALLER_ENV="1"
 INFO global: VAGRANT_OLD_ENV_SELINUX_ROLE_REQUESTED=""
 INFO global: VAGRANT_OLD_ENV_HISTSIZE="1000"
 INFO global: VAGRANT_OLD_ENV_LESSOPEN="||/usr/bin/lesspipe.sh %s"
 INFO global: VAGRANT_OLD_ENV_SHELL="/bin/bash"
 INFO global: VAGRANT_OLD_ENV_SELINUX_LEVEL_REQUESTED=""
 INFO global: VAGRANT_OLD_ENV_LOGNAME="iqbala"
 INFO global: VAGRANT_OLD_ENV_LANG="en_US.UTF-8"
 INFO global: VAGRANT_OLD_ENV_TERM="xterm-256color"
 INFO global: VAGRANT_OLD_ENV_QTLIB="/usr/lib64/qt-3.3/lib"
 INFO global: VAGRANT_OLD_ENV_SELINUX_USE_CURRENT_RANGE=""
 INFO global: VAGRANT_OLD_ENV_HISTCONTROL="ignoredups"
 INFO global: VAGRANT_OLD_ENV_SSH_ASKPASS="/usr/libexec/openssh/gnome-ssh-askpass"
 INFO global: VAGRANT_EXECUTABLE="/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/bin/vagrant"
 INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="/opt/vagrant/embedded"
 INFO global: VAGRANT_LOG="debug"
 INFO global: Plugins:
 INFO global:   - vagrant-share = [installed: undefined constraint: > 0]
DEBUG bundler: Current generated plugin dependency list: [<Gem::Dependency type=:runtime name="vagrant-share" requirements="> 0">]
DEBUG bundler: Generating new builtin set instance.
DEBUG bundler: Generating new plugin set instance. Skip gems - []
DEBUG bundler: Activating solution set: ["vagrant-share-1.1.6", "rest-client-2.0.0", "netrc-0.11.0", "mime-types-3.1", "http-cookie-1.0.3", "mime-types-data-3.2016.0521", "domain_name-0.5.20161129", "unf-0.1.4", "unf_ext-0.0.7.2"]
DEBUG bundler: Activating gem vagrant-share-1.1.6
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/provisioners/chef/plugin.rb
 INFO manager: Registered plugin: chef
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/provisioners/docker/plugin.rb
 INFO manager: Registered plugin: docker
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/provisioners/ansible/plugin.rb
 INFO manager: Registered plugin: ansible
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/provisioners/cfengine/plugin.rb
 INFO manager: Registered plugin: CFEngine Provisioner
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/provisioners/file/plugin.rb
 INFO manager: Registered plugin: file
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/provisioners/shell/plugin.rb
 INFO manager: Registered plugin: shell
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/provisioners/salt/plugin.rb
 INFO manager: Registered plugin: salt
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/provisioners/puppet/plugin.rb
 INFO manager: Registered plugin: puppet
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/kernel_v1/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/synced_folders/nfs/plugin.rb
 INFO manager: Registered plugin: NFS synced folders
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/synced_folders/rsync/plugin.rb
 INFO manager: Registered plugin: RSync synced folders
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/synced_folders/smb/plugin.rb
 INFO manager: Registered plugin: SMB synced folders
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/kernel_v2/plugin.rb
 INFO manager: Registered plugin: kernel
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/pushes/ftp/plugin.rb
 INFO manager: Registered plugin: ftp
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/pushes/noop/plugin.rb
 INFO manager: Registered plugin: noop
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/pushes/local-exec/plugin.rb
 INFO manager: Registered plugin: local-exec
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/pushes/heroku/plugin.rb
 INFO manager: Registered plugin: heroku
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/pushes/atlas/plugin.rb
 INFO manager: Registered plugin: atlas
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/communicators/ssh/plugin.rb
 INFO manager: Registered plugin: ssh communicator
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/communicators/winrm/plugin.rb
 INFO manager: Registered plugin: winrm communicator
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb
 INFO manager: Registered plugin: VirtualBox provider
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/plugin.rb
 INFO manager: Registered plugin: docker-provider
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/hyperv/plugin.rb
 INFO manager: Registered plugin: Hyper-V provider
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/windows/plugin.rb
 INFO manager: Registered plugin: Windows host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/slackware/plugin.rb
 INFO manager: Registered plugin: Slackware host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/redhat/plugin.rb
 INFO manager: Registered plugin: Red Hat Enterprise Linux host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/darwin/plugin.rb
 INFO manager: Registered plugin: Mac OS X host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/arch/plugin.rb
 INFO manager: Registered plugin: Arch host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/linux/plugin.rb
 INFO manager: Registered plugin: Linux host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/null/plugin.rb
 INFO manager: Registered plugin: null host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/suse/plugin.rb
 INFO manager: Registered plugin: SUSE host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/bsd/plugin.rb
 INFO manager: Registered plugin: BSD host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/hosts/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo host
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/omnios/plugin.rb
 INFO manager: Registered plugin: OmniOS guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/ubuntu/plugin.rb
 INFO manager: Registered plugin: Ubuntu guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/solaris11/plugin.rb
 INFO manager: Registered plugin: Solaris 11 guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/windows/plugin.rb
 INFO manager: Registered plugin: Windows guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/fedora/plugin.rb
 INFO manager: Registered plugin: Fedora guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/debian/plugin.rb
 INFO manager: Registered plugin: Debian guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/slackware/plugin.rb
 INFO manager: Registered plugin: Slackware guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/mint/plugin.rb
 INFO manager: Registered plugin: Mint guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/funtoo/plugin.rb
 INFO manager: Registered plugin: Funtoo guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/dragonflybsd/plugin.rb
 INFO manager: Registered plugin: DragonFly BSD guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/tinycore/plugin.rb
 INFO manager: Registered plugin: TinyCore Linux guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/openbsd/plugin.rb
 INFO manager: Registered plugin: OpenBSD guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/netbsd/plugin.rb
 INFO manager: Registered plugin: NetBSD guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/pld/plugin.rb
 INFO manager: Registered plugin: PLD Linux guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/redhat/plugin.rb
 INFO manager: Registered plugin: Red Hat Enterprise Linux guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/darwin/plugin.rb
 INFO manager: Registered plugin: Darwin guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/coreos/plugin.rb
 INFO manager: Registered plugin: CoreOS guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/arch/plugin.rb
 INFO manager: Registered plugin: Arch guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/solaris/plugin.rb
 INFO manager: Registered plugin: Solaris guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/smartos/plugin.rb
 INFO manager: Registered plugin: SmartOS guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/amazon/plugin.rb
 INFO manager: Registered plugin: Amazon Linux guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/linux/plugin.rb
 INFO manager: Registered plugin: Linux guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/suse/plugin.rb
 INFO manager: Registered plugin: SUSE guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/bsd/plugin.rb
 INFO manager: Registered plugin: BSD-based guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/trisquel/plugin.rb
 INFO manager: Registered plugin: Trisquel guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/nixos/plugin.rb
 INFO manager: Registered plugin: NixOS guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/photon/plugin.rb
 INFO manager: Registered plugin: VMware Photon guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/atomic/plugin.rb
 INFO manager: Registered plugin: Atomic Host guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/esxi/plugin.rb
 INFO manager: Registered plugin: ESXi guest.
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/freebsd/plugin.rb
 INFO manager: Registered plugin: FreeBSD guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/guests/gentoo/plugin.rb
 INFO manager: Registered plugin: Gentoo guest
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/resume/plugin.rb
 INFO manager: Registered plugin: resume command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/suspend/plugin.rb
 INFO manager: Registered plugin: suspend command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/ssh/plugin.rb
 INFO manager: Registered plugin: ssh command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/reload/plugin.rb
 INFO manager: Registered plugin: reload command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/halt/plugin.rb
 INFO manager: Registered plugin: halt command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/global-status/plugin.rb
 INFO manager: Registered plugin: global-status command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/provider/plugin.rb
 INFO manager: Registered plugin: provider command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/plugin/plugin.rb
 INFO manager: Registered plugin: plugin command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/list-commands/plugin.rb
 INFO manager: Registered plugin: list-commands command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/rdp/plugin.rb
 INFO manager: Registered plugin: rdp command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/ssh_config/plugin.rb
 INFO manager: Registered plugin: ssh-config command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/package/plugin.rb
 INFO manager: Registered plugin: package command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/powershell/plugin.rb
 INFO manager: Registered plugin: powershell command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/login/plugin.rb
 INFO manager: Registered plugin: vagrant-login
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/cap/plugin.rb
 INFO manager: Registered plugin: cap command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/version/plugin.rb
 INFO manager: Registered plugin: version command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/help/plugin.rb
 INFO manager: Registered plugin: help command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/status/plugin.rb
 INFO manager: Registered plugin: status command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/box/plugin.rb
 INFO manager: Registered plugin: box command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/snapshot/plugin.rb
 INFO manager: Registered plugin: snapshot command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/provision/plugin.rb
 INFO manager: Registered plugin: provision command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/push/plugin.rb
 INFO manager: Registered plugin: push command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/destroy/plugin.rb
 INFO manager: Registered plugin: destroy command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/up/plugin.rb
 INFO manager: Registered plugin: up command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/port/plugin.rb
 INFO manager: Registered plugin: port command
DEBUG global: Loading core plugin: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/commands/init/plugin.rb
 INFO manager: Registered plugin: init command
 INFO global: Loading plugins!
DEBUG global: Loading plugin `vagrant-share` with default require: `vagrant-share`
 INFO manager: Registered plugin: vagrant-share
DEBUG global: Successfully loaded plugin `vagrant-share`.
 INFO vagrant: `vagrant` invoked: ["up", "--debug", "--provider=docker"]
DEBUG vagrant: Creating Vagrant environment
 INFO environment: Environment initialized (#<Vagrant::Environment:0x00000002fd8f98>)
 INFO environment:   - cwd: /home/iqbala/vagrant/centos
 INFO environment: Home path: /home/iqbala/.vagrant.d
DEBUG environment: Effective local data path: /home/iqbala/vagrant/centos/.vagrant
 INFO environment: Local data path: /home/iqbala/vagrant/centos/.vagrant
DEBUG environment: Creating: /home/iqbala/vagrant/centos/.vagrant
 INFO environment: Running hook: environment_plugins_loaded
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: environment_plugins_loaded #<Vagrant::Action::Builder:0x000000030c6cc0>
 INFO environment: Running hook: environment_load
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: environment_load #<Vagrant::Action::Builder:0x0000000309ad78>
 INFO cli: CLI: [] "up" ["--provider=docker"]
DEBUG cli: Invoking command class: VagrantPlugins::CommandUp::Command ["--provider=docker"]
DEBUG command: 'Up' each target VM...
 INFO loader: Set :root = ["#<Pathname:/home/iqbala/vagrant/centos/Vagrantfile>"]
DEBUG loader: Populating proc cache for #<Pathname:/home/iqbala/vagrant/centos/Vagrantfile>
DEBUG loader: Load procs for pathname: /home/iqbala/vagrant/centos/Vagrantfile
 INFO loader: Loading configuration in order: [:home, :root]
DEBUG loader: Loading from: root (evaluating)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
DEBUG command: Getting target VMs for command. Arguments:
DEBUG command:  -- names: ["default"]
DEBUG command:  -- options: nil
DEBUG command: Finding machine that match name: default
 INFO command: Active machine found with name default. Using provider: docker
 INFO environment: Getting machine: default (docker)
 INFO environment: Uncached load of machine.
 INFO loader: Set "24672260_machine_default" = []
 INFO loader: Loading configuration in order: [:home, :root, "24672260_machine_default"]
DEBUG loader: Loading from: root (cache)
DEBUG loader: Configuration loaded successfully, finalizing and returning
DEBUG push: finalizing
 INFO machine: Initializing machine: default
 INFO machine:   - Provider: VagrantPlugins::DockerProvider::Provider
 INFO machine:   - Box: 
 INFO machine:   - Data dir: /home/iqbala/vagrant/centos/.vagrant/machines/default/docker
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO interface: Machine: metadata ["provider", :docker, {:target=>:default}]
 INFO command: With machine: default (#<VagrantPlugins::DockerProvider::Provider:0x00000003024b00 @logger=#<Log4r::Logger:0x00000003024a88 @fullname="vagrant::provider::docker", @outputters=[], @additive=true, @name="docker", @path="vagrant::provider", @parent=#<Log4r::Logger:0x00000002227b38 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x000000021b0308 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000000021b0268>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000000021aa2a0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000002227a20 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: default (VagrantPlugins::DockerProvider::Provider)>, @cap_logger=#<Log4r::Logger:0x000000030dc9a8 @fullname="vagrant::capability_host::vagrantplugins::dockerprovider::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrantplugins::dockerprovider", @parent=#<Log4r::Logger:0x00000002227b38 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x000000021b0308 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000000021b0268>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000000021aa2a0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000002227a20 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:docker, #<#<Class:0x000000030dc3e0>:0x00000003084af0>]], @cap_args=[#<Vagrant::Machine: default (VagrantPlugins::DockerProvider::Provider)>], @cap_caps={:virtualbox=>#<Vagrant::Registry:0x000000030dc278 @items={:forwarded_ports=>#<Proc:0x0000000278afa8@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x0000000278aee0@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:32>, :public_address=>#<Proc:0x0000000278aeb8@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:37>, :snapshot_list=>#<Proc:0x0000000278ae90@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:42>}, @results_cache={}>, :docker=>#<Vagrant::Registry:0x000000030dc1d8 @items={:public_address=>#<Proc:0x00000002753ad0@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/plugin.rb:60>, :proxy_machine=>#<Proc:0x00000002753990@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/plugin.rb:65>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x000000030dc138 @items={:public_address=>#<Proc:0x0000000274e670@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/hyperv/plugin.rb:25>, :snapshot_list=>#<Proc:0x0000000274e558@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/hyperv/plugin.rb:30>}, @results_cache={}>}, @driver=#<VagrantPlugins::DockerProvider::Driver:0x0000000305c460 @logger=#<Log4r::Logger:0x0000000305c3c0 @fullname="vagrant::docker::driver", @outputters=[], @additive=true, @name="driver", @path="vagrant::docker", @parent=#<Log4r::Logger:0x00000002227b38 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x000000021b0308 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000000021b0268>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000000021aa2a0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000002227a20 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @executor=#<VagrantPlugins::DockerProvider::Executor::Local:0x0000000300cf28>>>)
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO host: Autodetecting host type for [#<Vagrant::Environment: /home/iqbala/vagrant/centos>]
DEBUG host: Trying: slackware
DEBUG host: Trying: redhat
 INFO host: Detected: redhat!
DEBUG host: Searching for cap: provider_install_docker
DEBUG host: Checking in: redhat
DEBUG host: Checking in: linux
DEBUG command: Getting target VMs for command. Arguments:
DEBUG command:  -- names: ["default"]
DEBUG command:  -- options: {:provider=>"docker"}
DEBUG command: Finding machine that match name: default
 INFO command: Active machine found with name default. Using provider: docker
 INFO environment: Getting machine: default (docker)
 INFO environment: Returning cached machine: default (docker)
 INFO command: With machine: default (#<VagrantPlugins::DockerProvider::Provider:0x00000003024b00 @logger=#<Log4r::Logger:0x00000003024a88 @fullname="vagrant::provider::docker", @outputters=[], @additive=true, @name="docker", @path="vagrant::provider", @parent=#<Log4r::Logger:0x00000002227b38 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x000000021b0308 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000000021b0268>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000000021aa2a0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000002227a20 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @machine=#<Vagrant::Machine: default (VagrantPlugins::DockerProvider::Provider)>, @cap_logger=#<Log4r::Logger:0x000000030dc9a8 @fullname="vagrant::capability_host::vagrantplugins::dockerprovider::provider", @outputters=[], @additive=true, @name="provider", @path="vagrant::capability_host::vagrantplugins::dockerprovider", @parent=#<Log4r::Logger:0x00000002227b38 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x000000021b0308 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000000021b0268>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000000021aa2a0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000002227a20 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @cap_host_chain=[[:docker, #<#<Class:0x000000030dc3e0>:0x00000003084af0>]], @cap_args=[#<Vagrant::Machine: default (VagrantPlugins::DockerProvider::Provider)>], @cap_caps={:virtualbox=>#<Vagrant::Registry:0x000000030dc278 @items={:forwarded_ports=>#<Proc:0x0000000278afa8@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:27>, :nic_mac_addresses=>#<Proc:0x0000000278aee0@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:32>, :public_address=>#<Proc:0x0000000278aeb8@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:37>, :snapshot_list=>#<Proc:0x0000000278ae90@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/virtualbox/plugin.rb:42>}, @results_cache={}>, :docker=>#<Vagrant::Registry:0x000000030dc1d8 @items={:public_address=>#<Proc:0x00000002753ad0@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/plugin.rb:60>, :proxy_machine=>#<Proc:0x00000002753990@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/plugin.rb:65>}, @results_cache={}>, :hyperv=>#<Vagrant::Registry:0x000000030dc138 @items={:public_address=>#<Proc:0x0000000274e670@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/hyperv/plugin.rb:25>, :snapshot_list=>#<Proc:0x0000000274e558@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/hyperv/plugin.rb:30>}, @results_cache={}>}, @driver=#<VagrantPlugins::DockerProvider::Driver:0x0000000305c460 @logger=#<Log4r::Logger:0x0000000305c3c0 @fullname="vagrant::docker::driver", @outputters=[], @additive=true, @name="driver", @path="vagrant::docker", @parent=#<Log4r::Logger:0x00000002227b38 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x000000021b0308 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000000021b0268>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000000021aa2a0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000002227a20 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @executor=#<VagrantPlugins::DockerProvider::Executor::Local:0x0000000300cf28>>>)
 INFO interface: info: Bringing machine 'default' up with 'docker' provider...
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: stdout: 
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO batch_action: Enabling parallelization by default.
 INFO batch_action: Disabling parallelization because only executing one action
 INFO batch_action: Batch action will parallelize: false
 INFO batch_action: Starting action: #<Vagrant::Machine:0x000000026d0ec8> up {:destroy_on_error=>true, :install_provider=>true, :parallel=>true, :provision_ignore_sentinel=>false, :provision_types=>nil, :provider=>"docker"}
 INFO machine: Calling action: up on provider Docker (452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac)
DEBUG environment: Attempting to acquire process-lock: machine-action-820eecf30969dac27e4afab7d36214c6
DEBUG environment: Attempting to acquire process-lock: dotlock
 INFO environment: Acquired process lock: dotlock
 INFO environment: Released process lock: dotlock
 INFO environment: Acquired process lock: machine-action-820eecf30969dac27e4afab7d36214c6
 INFO interface: Machine: action ["up", "start", {:target=>:default}]
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x00000002d50b90>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x00000002d0d020>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x000000027478c0>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::IsState:0x0000000273a0f8>
DEBUG is_state: Checking if machine state is 'not_created'
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG is_state: -- Machine state: stopped
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::IsState:0x0000000273a0f8>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x00000002f4af18>
 INFO warden: Calling IN action: #<Proc:0x00000002eff9f0@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Proc:0x00000002f4ae50@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::ConfigValidate:0x00000002d0cf80>
 INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::HostMachine:0x00000002d0cf30>
 INFO hostmachine: No host machine needed.
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x00000002889aa8>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x00000002e6dd20>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::IsState:0x00000002e6a6c0>
DEBUG is_state: Checking if machine state is 'not_created'
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
DEBUG subprocess: stdout: 
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG is_state: -- Machine state: stopped
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::IsState:0x00000002e6a6c0>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x000000022146f0>
 INFO warden: Calling IN action: #<Proc:0x00000002075880@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Proc:0x00000002214650@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x00000002889a30>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x000000030c85e8>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::IsState:0x000000030bbd70>
DEBUG is_state: Checking if machine state is 'running'
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: stdout: 
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: stdout: 
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
DEBUG is_state: -- Machine state: stopped
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::IsState:0x000000030bbd70>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x00000002d23f78>
 INFO warden: Calling IN action: #<Proc:0x00000002fecb60@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x00000002d23f00>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x00000002f51778>
 INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::HasSSH:0x00000002f4a810>
 INFO warden: Calling OUT action: #<VagrantPlugins::DockerProvider::Action::HasSSH:0x00000002f4a810>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x00000002eee8f8>
 INFO warden: Calling IN action: #<Proc:0x00000002e4d480@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Provision:0x00000002eee718>
 INFO provision: Checking provisioner sentinel file...
 INFO warden: Calling IN action: #<Proc:0x00000002e9c698@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x00000002d23e60>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x00000002d4c428>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::IsState:0x00000002d491b0>
DEBUG is_state: Checking if machine state is 'not_created'
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
DEBUG subprocess: stdout: 
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG is_state: -- Machine state: stopped
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::IsState:0x00000002d491b0>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x0000000307bbf8>
 INFO warden: Calling IN action: #<Proc:0x00000003015a10@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::EnvSet:0x0000000307bb80>
 INFO warden: Calling IN action: #<Proc:0x0000000307bb30@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::HostMachineBuildDir:0x00000002d23de8>
 INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::HostMachineSyncFolders:0x000000028a3c28>
 INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::PrepareNFSValidIds:0x00000002803818>
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO warden: Calling IN action: #<VagrantPlugins::SyncedFolderNFS::ActionCleanup:0x00000002750dd0>
DEBUG host: Searching for cap: nfs_prune
DEBUG host: Checking in: redhat
DEBUG host: Checking in: linux
DEBUG host: Found cap: nfs_prune in linux
 INFO nfs: NFS pruning. Valid IDs: ["452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac", "f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88", "c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a", "81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53", "27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23", "822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5", "ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c", "72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56", "5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf", "b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f", "1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808"]
DEBUG host: Searching for cap: nfs_prune
DEBUG host: Checking in: redhat
DEBUG host: Checking in: linux
DEBUG host: Found cap: nfs_prune in linux
 INFO host: Execute capability: nfs_prune [#<Vagrant::Environment: /home/iqbala/vagrant/centos>, #<Vagrant::UI::Prefixed:0x000000020ca998 @logger=#<Log4r::Logger:0x000000020ca8f8 @fullname="vagrant::ui::interface", @outputters=[], @additive=true, @name="interface", @path="vagrant::ui", @parent=#<Log4r::Logger:0x00000002227b38 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x000000021b0308 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000000021b0268>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000000021aa2a0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000002227a20 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @opts={}, @stdin=#<IO:<STDIN>>, @stdout=#<IO:<STDOUT>>, @stderr=#<IO:<STDERR>>, @prefix=:default, @ui=#<Vagrant::UI::Basic:0x00000002fd8d68 @logger=#<Log4r::Logger:0x00000002fd8d18 @fullname="vagrant::ui::interface", @outputters=[], @additive=true, @name="interface", @path="vagrant::ui", @parent=#<Log4r::Logger:0x00000002227b38 @fullname="vagrant", @outputters=[#<Log4r::StderrOutputter:0x000000021b0308 @mon_owner=nil, @mon_count=0, @mon_mutex=#<Mutex:0x000000021b0268>, @name="stderr", @level=0, @formatter=#<Log4r::DefaultFormatter:0x000000021aa2a0 @depth=7>, @out=#<IO:<STDERR>>>], @additive=true, @name="vagrant", @path="", @parent=#<Log4r::RootLogger:0x00000002227a20 @level=0, @outputters=[]>, @level=1, @trace=false>, @level=1, @trace=false>, @opts={:color=>:default}, @stdin=#<IO:<STDIN>>, @stdout=#<IO:<STDOUT>>, @stderr=#<IO:<STDERR>>, @lock=#<Mutex:0x000000021a9f58>>>, ["452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac", "f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88", "c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a", "81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53", "27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23", "822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5", "ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c", "72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56", "5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf", "b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f", "1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808"]] (redhat)
 INFO linux: Pruning invalid NFS entries...
DEBUG linux: Known valid NFS export IDs: ["452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac", "f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88", "c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a", "81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53", "27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23", "822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5", "ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c", "72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56", "5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf", "b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f", "1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808"]
DEBUG linux: Composite valid NFS export IDs with user: ["500 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac", "500 f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88", "500 c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a", "500 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53", "500 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23", "500 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5", "500 ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c", "500 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56", "500 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf", "500 b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f", "500 1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808"]
DEBUG linux: NFS export IDs to be removed: []
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::SyncedFolderCleanup:0x000000026cb888>
 INFO synced_folder_cleanup: Invoking synced folder cleanup for: docker
 INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::PrepareNFSSettings:0x000000021aa070>
 INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::Login:0x00000001ebaa40>
 INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::Build:0x00000002e41298>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::Call:0x000000030c43a8>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Builder:0x00000002d27b00>
 INFO warden: Calling IN action: #<Vagrant::Action::Builtin::IsState:0x00000002d24568>
DEBUG is_state: Checking if machine state is 'preparing'
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
DEBUG subprocess: stdout: 
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: stdout: 
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
DEBUG is_state: -- Machine state: stopped
 INFO warden: Calling OUT action: #<Vagrant::Action::Builtin::IsState:0x00000002d24568>
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: machine_action_up #<Vagrant::Action::Warden:0x00000002f15408>
 INFO warden: Calling IN action: #<Proc:0x00000002ea6f58@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::CompareSyncedFolders:0x00000002f15390>
 INFO interface: warn: Vagrant has noticed that the synced folder definitions have changed.
With Docker, these synced folder changes won't take effect until you
destroy the container and recreate it.
 INFO interface: warn: ==> default: Vagrant has noticed that the synced folder definitions have changed.
==> default: With Docker, these synced folder changes won't take effect until you
==> default: destroy the container and recreate it.
 INFO warden: Calling IN action: #<Proc:0x00000002f15340@/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:94 (lambda)>
 INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::Start:0x000000030c42b8>
 INFO interface: output: Starting container...
 INFO interface: output: ==> default: Starting container...
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "start", "452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
 INFO warden: Calling IN action: #<VagrantPlugins::DockerProvider::Action::WaitForRunning:0x000000030c4268>
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO interface: output: Waiting for container to enter "running" state...
 INFO interface: output: ==> default: Waiting for container to enter "running" state...
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
DEBUG subprocess: stdout: 
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
DEBUG subprocess: stdout: 
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
DEBUG subprocess: stdout: 
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
DEBUG subprocess: stdout: 
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 31999
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: stdout: 
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
DEBUG subprocess: stdout: 
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
 INFO subprocess: Starting process: ["/usr/bin/docker", "ps", "-a", "-q", "--no-trunc"]
 INFO subprocess: Command not in installer, restoring original environment...
DEBUG subprocess: Selecting on IO
DEBUG subprocess: stdout: 452f759df40b7a3daf31a4f5a80e82d787f8186ffea58f08b6b40257e8fc72ac
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: f9dbb87b6908a753a65d635be3edc269cf44a887363d525324f14daf3356aa88
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: c3b35f44ac7d5c57e50e49ab89c70fbb3b0e78df91ab2fa2ef4b96a46d3f256a
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 81bc725553991c11dfdbc838c2f258d1443fec0c89a775801788dfe228347d53
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 27931b649f997b7de7b0217de2ed6f32b43c6bb37a179154bb8a204c5b366c23
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 822517e7b2d90e61186b16846ae8df0b01aadc9fa9284a0eb2472e4f8bd59af5
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: ab616e8ec0b116b04ce18337f5df0d1e9114a38dc640224609a15c561ca4fc1c
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 72d4b8800001b17484d0559b702cf7920cd83bddafb6a5df48ea31c7b1838c56
DEBUG subprocess: stdout: 
DEBUG subprocess: stdout: 5f7672e8cb6dd83b5285c1bc19ee95e745dce1752533c9bd9c7068521022dddf
DEBUG subprocess: stdout: 
b09fe2475ab9062cfa3f5cb0f7f642e3f9cba1dfae0a10c0eaa6b47d5b7a1c3f
1fb08a8b2fb91e2cb60735e8cea01c95101eb77d39870b5a560d0eefd002d808
DEBUG subprocess: Waiting for process to exit. Remaining to timeout: 32000
DEBUG subprocess: Exit status: 0
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end
 INFO warden: Beginning recovery process...
 INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x000000030c43a8>
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x00000002d23e60>
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x00000002d23f00>
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end
 INFO warden: Beginning recovery process...
 INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x00000002889a30>
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x00000002889aa8>
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Calling recover: #<Vagrant::Action::Builtin::Call:0x00000002d0d020>
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
ERROR warden: Error occurred: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO warden: Beginning recovery process...
 INFO warden: Recovery complete.
 INFO environment: Released process lock: machine-action-820eecf30969dac27e4afab7d36214c6
 INFO environment: Running hook: environment_unload
 INFO runner: Preparing hooks for middleware sequence...
 INFO runner: 1 hooks defined.
 INFO runner: Running action: environment_unload #<Vagrant::Action::Builder:0x00000002de8d28>
ERROR vagrant: Vagrant experienced an error! Details:
ERROR vagrant: #<VagrantPlugins::DockerProvider::Errors::StateStopped: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end>
ERROR vagrant: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end
ERROR vagrant: /opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/action/wait_for_running.rb:33:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/action/start.rb:16:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/action/compare_synced_folders.rb:53:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builder.rb:116:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `block in run'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/util/busy.rb:19:in `busy'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `run'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builtin/call.rb:53:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/action/build.rb:22:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/action/login.rb:17:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/action/prepare_nfs_settings.rb:15:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builtin/synced_folder_cleanup.rb:28:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/synced_folders/nfs/action_cleanup.rb:25:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/action/prepare_nfs_valid_ids.rb:14:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/action/host_machine_sync_folders.rb:23:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/action/host_machine_build_dir.rb:19:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builtin/env_set.rb:19:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builder.rb:116:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `block in run'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/util/busy.rb:19:in `busy'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `run'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builtin/call.rb:53:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builtin/provision.rb:80:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builder.rb:116:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `block in run'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/util/busy.rb:19:in `busy'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `run'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builtin/call.rb:53:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builder.rb:116:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `block in run'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/util/busy.rb:19:in `busy'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `run'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builtin/call.rb:53:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builder.rb:116:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `block in run'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/util/busy.rb:19:in `busy'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `run'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builtin/call.rb:53:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/plugins/providers/docker/action/host_machine.rb:18:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builtin/config_validate.rb:25:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builder.rb:116:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `block in run'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/util/busy.rb:19:in `busy'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `run'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builtin/call.rb:53:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/warden.rb:34:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/builder.rb:116:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `block in run'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/util/busy.rb:19:in `busy'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/action/runner.rb:66:in `run'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/machine.rb:225:in `action_raw'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/machine.rb:200:in `block in action'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/environment.rb:567:in `lock'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/machine.rb:186:in `call'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/machine.rb:186:in `action'
/opt/vagrant/embedded/gems/gems/vagrant-1.9.1/lib/vagrant/batch_action.rb:82:in `block (2 levels) in run'
 INFO interface: error: The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end
The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end
 INFO interface: Machine: error-exit ["VagrantPlugins::DockerProvider::Errors::StateStopped", "The container started either never left the \"stopped\" state or\nvery quickly reverted to the \"stopped\" state. This is usually\nbecause the container didn't execute a command that kept it running,\nand usually indicates a misconfiguration.\n\nIf you meant for this container to not remain running, please\nset the Docker provider configuration \"remains_running\" to \"false\":\n\n  config.vm.provider \"docker\" do |d|\n    d.remains_running = false\n  end"]


Alvaro Miranda Aguilera

unread,
Dec 10, 2016, 2:54:17 PM12/10/16
to vagra...@googlegroups.com

On Fri, Dec 9, 2016 at 5:23 AM, Asif Iqbal <vad...@gmail.com> wrote:
The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end

why you say is failing?

the message says the machine have no command to run so it stopped, so is an expected result:

The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end


Alvaro.


--
Alvaro

Asif Iqbal

unread,
Dec 10, 2016, 8:51:22 PM12/10/16
to vagra...@googlegroups.com
On Sat, Dec 10, 2016 at 2:54 PM, Alvaro Miranda Aguilera <kik...@gmail.com> wrote:

On Fri, Dec 9, 2016 at 5:23 AM, Asif Iqbal <vad...@gmail.com> wrote:
The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end

why you say is failing?

the message says the machine have no command to run so it stopped, so is an expected result:

I am failing to start it. What do I need in the config to start it?

$ vagrant up --provider docker
Bringing machine 'default' up with 'docker' provider...
==> default: Vagrant has noticed that the synced folder definitions have changed.
==> default: With Docker, these synced folder changes won't take effect until you
==> default: destroy the container and recreate it.
==> default: Starting container...
==> default: Waiting for machine to boot. This may take a few minutes...
Timed out while waiting for the machine to boot. This means that
Vagrant was unable to communicate with the guest machine within
the configured ("config.vm.boot_timeout" value) time period.

If you look above, you should be able to see the error(s) that
Vagrant had when attempting to connect to the machine. These errors
are usually good hints as to what may be wrong.

If you're using a custom box, make sure that networking is properly
working and you're able to connect to the machine. It is a common
problem that networking isn't setup properly in these boxes.
Verify that authentication configurations are also setup properly,
as well.

If the box appears to be booting properly, you may want to increase
the timeout ("config.vm.boot_timeout") value.


I can run it using docker and I get a login. So I must be missing something
in my config?

$ docker run -it --rm centos
[root@02afb48a009e /]# uname -a
Linux 02afb48a009e 4.4.0-53-generic #74-Ubuntu SMP Fri Dec 2 15:59:10 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
[root@02afb48a009e /]# 


 

The container started either never left the "stopped" state or
very quickly reverted to the "stopped" state. This is usually
because the container didn't execute a command that kept it running,
and usually indicates a misconfiguration.

If you meant for this container to not remain running, please
set the Docker provider configuration "remains_running" to "false":

  config.vm.provider "docker" do |d|
    d.remains_running = false
  end


Alvaro.


--
Alvaro

--
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.
 
GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
---
You received this message because you are subscribed to a topic in the Google Groups "Vagrant" group.
To unsubscribe from this topic, visit https://groups.google.com/d/topic/vagrant-up/_EXNsr5NoVg/unsubscribe.
To unsubscribe from this group and all its topics, send an email to vagrant-up+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/CAHqq0ewCZzphe3FnWgM56qDm0D_F2wtzd-WUvCjkCqXdcQYmew%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.



--
Asif Iqbal
PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?

Alvaro Miranda Aguilera

unread,
Dec 11, 2016, 11:31:17 AM12/11/16
to vagra...@googlegroups.com
docker + vagrant usually requires you known very well what you are doing.

since docker in one end is not meant to be run  as a full OS, its meant to run a program. 

vagrant in the other end, expect a full OS so can ssh into a do some changes.

most of the docker container by default don't start ssh, so vagrant wont be able to login.

Alvaro.

You received this message because you are subscribed to the Google Groups "Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vagrant-up+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/CAOHBbgVc%3DaPrY1N%3DQLBrKMK2CRcC89yD3CnhTkp8Ctz8D3yonA%40mail.gmail.com.

For more options, visit https://groups.google.com/d/optout.



--
Alvaro

Reply all
Reply to author
Forward
0 new messages