Page History
...
도커 컨테이너는 HostOS의 커널 기능을 사용할수 있으며 , 윈도우 Host인경우 윈도우기능을 사용할수 있다.
OS 설치정보
Vagrant
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at
# https://docs.vagrantup.com.
# Every Vagrant development environment requires a box. You can search for
# boxes at https://vagrantcloud.com/search.
config.vbguest.auto_update = false
config.vm.box = "StefanScherer/windows_2019_docker"
config.vm.hostname = "docker3"
config.vm.network "private_network", ip: "192.168.56.203"
config.vm.provider "virtualbox" do |vb|
# # Display the VirtualBox GUI when booting the machine
# vb.gui = true
vb.memory = "2048"
end
#
# View the documentation for the provider you are using for more
# information on available options.
# Enable provisioning with a shell script. Additional provisioners such as
# Puppet, Chef, Ansible, Salt, and Docker are also available. Please see the
# documentation for more information about their specific syntax and use.
# config.vm.provision "shell", inline: <<-SHELL
# apt-get update
# apt-get install -y apache2
# SHELL
end
|
https://www.veeam.com/blog/windows-server-2016-core-installation-steps.html
Install-Module DockerMsftProvider -Force
Install-Package Docker -ProviderName DockerMsftProvider -Force
윈도우(닷넷45) 기능을 이용할수 있는 Dockerfile
...