참고: https://docs.docker.com/engine/installation/windows/docker-ee/
Install-Module DockerProvider -Force
Install-Package Docker -ProviderName DockerProvider -Force
참고: https://docs.docker.com/engine/installation/windows/docker-ee/
Install-Module DockerProvider -Force
Install-Package Docker -ProviderName DockerProvider -Force
참고: http://windowsitpro.com/powershell/powershell-background-jobs
Start-Job {Param($log,$newest) Get-EventLog $log -Newest $newest} -ArgumentList “system”,25
Start-Job -FilePath C:\scripts\Send-UptimeMail.ps1 -ArgumentList (Get-Credential jhicks@jdhitsolutions.com)
Get-Job 3 -IncludeChildJob
참고: https://github.com/kstaken/dockerfile-examples
참고: https://codingsec.net/2016/05/hide-ip-address-safe-online/
<자신의 IP Address를 숨기는 이유>
For Hiding Geographical Location.
To Prevent Web Tracking.
To Avoid leaving a Digital Footprint.
To Bypass Blocked Sites on their IP Address.(중국에서 Facebook에 접속하기)
스마트폰에서는 VPN Express를 설치하면 하루 300MB 네트워크 용량까지는 무료로 사용할 수 있다.
참고: http://www.ntweekly.com/?p=16405
Windows Server 2016의 1709버전이 2017.10.15에 출시되었다.
이 버전의 주요 기능은 아래 동영상이나 링크 정보를 보면 된다.
무엇보다도 Tomcat과 같은 Linux Container를 1709버전에서도 실행된다는 것이다.
이제는 진일보하게 Windows가 Open Source와 되어 가고 있다는 것을 알 수 있다.
Linux에서 만든 docker image를 Windows Server 2016의 최신 OS에서 실행이 가능한 것을 아래 동영상에서 확인해 본다.(Windows Container 기능이 많이 향상되었네)
Windows Server 2016에서 다음과 같이 tomcat 이미지를 다운로드하여 실행한다
docker run –rm -d -p 88:8080 -m 1gb tomcat
다른 컴퓨터에서 실행된 Tomcat 웹페이지에 액세스한다
http://10.159.22.229:88
다시 nycat이라는 Linux 도커 이미지를 다운로드하여 실행한다
docker run -it nyancat
화면에서 이미지 프로그램이 실행된다
참고 동영상: https://youtu.be/yea9OXRZ8xg
링크: https://blogs.technet.microsoft.com/windowsserver/2017/09/25/faster-releases-for-a-faster-world-first-semi-annual-release-of-windows-server/
참고: https://www.digitalocean.com/community/tutorials/how-to-remove-docker-images-containers-and-volumes
좋은 내용이 많이 있다. 특히 사용하지 않는 Volume를 지울 수도 있다
docker volume ls -f dangling=true
docker volume rm $(docker volume ls -f dangling=true -q)