This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[05:54:11.662][Moby ][Info ] [ 0.000000] NR_IRQS:8448 nr_irqs:1448 0 | |
[05:54:11.662][Moby ][Info ] [ 0.000000] Console: colour dummy device 80x25 | |
[05:54:11.678][Moby ][Info ] [ 0.000000] console [ttyS0] enabled | |
[05:54:11.678][Moby ][Info ] [ 0.000000] allocated 4194304 bytes of page_ext | |
[05:54:11.693][Moby ][Info ] [ 0.000000] tsc: Unable to calibrate against PIT | |
[05:54:11.693][Moby ][Info ] [ 0.000000] tsc: HPET/PMTIMER calibration failed | |
[05:54:23.010][DnsUpdater ][Info ] Network configuration change detected | |
[05:54:23.010][PowerShell ][Info ] Run script '$(Find-NetRoute -RemoteIPAddress 8.8.8.8).InterfaceIndex[0]'... | |
[05:54:31.198][DnsUpdater ][Info ] Network configuration change detected | |
[05:54:31.198][PowerShell ][Info ] Run script '$(Find-NetRoute -RemoteIPAddress 8.8.8.8).InterfaceIndex[0]'... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Vagrant.configure("2") do |config| | |
config.vm.define "tst" do |cfg| | |
cfg.vm.box = "StefanScherer/windows_2016" | |
cfg.vm.hostname = "tst" | |
cfg.vm.provider "virtualbox" do |vb| | |
vb.gui = true | |
vb.memory = "2048" | |
vb.linked_clone = true | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
in/ | |
*.tar | |
createtar-* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
in/ | |
*.tar |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '2.1' | |
services: | |
traefik: | |
image: traefik:v1.5.0 | |
ports: | |
- "80:80" | |
- "8081:8081" | |
- "443:443" | |
volumes: | |
- ./traefik.toml:/etc/traefik/traefik.toml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows PowerShell | |
Copyright (C) 2016 Microsoft Corporation. All rights reserved. | |
PS C:\Users\demo> cd .\workspace\ | |
PS C:\Users\demo\workspace> dir | |
Directory: C:\Users\demo\workspace | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ vagrant provision | |
==> default: Running provisioner: shell... | |
default: Running: inline script | |
default: INFO global: Vagrant version: 2.0.1 | |
default: INFO global: Ruby version: 2.4.2 | |
default: INFO global: RubyGems version: 2.6.13 | |
default: INFO global: VAGRANT_LOG="debug" | |
default: INFO global: VAGRANT_OLD_ENV_LOGNAME="root" | |
default: INFO global: VAGRANT_INSTALLER_ENV="1" | |
default: INFO global: VAGRANT_EXECUTABLE="/opt/vagrant/embedded/gems/gems/vagrant-2.0.1/bin/vagrant" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Users\stefan.scherer\code\tst | |
$ $env:VAGRANT_LOG="debug" | |
C:\Users\stefan.scherer\code\tst | |
$ rm -r .\.vagrant\ | |
C:\Users\stefan.scherer\code\tst | |
$ vagrant up | |
INFO global: Vagrant version: 2.0.1 | |
INFO global: Ruby version: 2.4.2 | |
INFO global: RubyGems version: 2.6.13 | |
INFO global: VAGRANT_EXECUTABLE="C:\\HashiCorp\\Vagrant\\embedded\\gems\\gems\\vagrant-2.0.1\\bin\\vagrant" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Users\stefan.scherer\GitHub\plossys\vagrant\am-windows>vagrant status | |
INFO global: Vagrant version: 2.0.0 | |
INFO global: Ruby version: 2.3.4 | |
INFO global: RubyGems version: 2.5.2.1 | |
INFO global: VAGRANT_DETECTED_ARCH="64" | |
INFO global: VAGRANT_DETECTED_OS="msys" | |
INFO global: VAGRANT_EXECUTABLE="C:\\HashiCorp\\Vagrant\\embedded\\gems\\gems\\vagrant-2.0.0\\bin\\ | |
vagrant" | |
INFO global: VAGRANT_INSTALLER_EMBEDDED_DIR="C:\\HashiCorp\\Vagrant\\embedded" | |
INFO global: VAGRANT_INSTALLER_ENV="1" |