เว็บไซต์นักเทียบท่าทำเอกสารกระบวนการทั้งหมดจริง
- ในพรอมต์คำสั่ง PowerShell ให้ดาวน์โหลดไฟล์เก็บถาวรของตัวติดตั้งบนเครื่องที่มีการเชื่อมต่อ
invoke-webrequest -UseBasicparsing -Outfile docker-17.06.2-ee-7.zip https://download.docker.com/components/engine/windows-server/17.06/docker-17.06.2-ee-7.zip
- คัดลอกไฟล์ zip ไปยังเครื่องที่คุณต้องการติดตั้ง Docker ในพรอมต์คำสั่ง PowerShell ให้ใช้คำสั่งต่อไปนี้เพื่อแตกไฟล์เก็บถาวรลงทะเบียนและเริ่มบริการ Docker
# Extract the archive.
Expand-Archive docker-17.06.2-ee-7.zip -DestinationPath $Env:ProgramFiles
# Clean up the zip file.
Remove-Item -Force docker-17.06.2-ee-7.zip
# Install Docker. This requires rebooting.
$null = Install-WindowsFeature containers
# Add Docker to the path for the current session.
$env:path += ";$env:ProgramFiles\docker"
# Optionally, modify PATH to persist across sessions.
$newPath = "$env:ProgramFiles\docker;" +
[Environment]::GetEnvironmentVariable("PATH",
[EnvironmentVariableTarget]::Machine)
[Environment]::SetEnvironmentVariable("PATH", $newPath,
[EnvironmentVariableTarget]::Machine)
# Register the Docker daemon as a service.
dockerd --register-service
# Start the Docker service.
Start-Service docker
- ทดสอบการติดตั้ง Docker EE ของคุณโดยรันคอนเทนเนอร์ hello-world
docker container run hello-world:nanoserver
ติดตั้ง Docker Enterprise Edition สำหรับ Windows Server
เนื่องจากคุณไม่สามารถระบุรุ่นของ Windows Server คุณกำลังใช้ข้อมูลต่อไปนี้อาจเกี่ยวข้อง
ขณะนี้ยังไม่รองรับ Docker Universal Control Plane บน Windows Server 1709 เนื่องจากปัญหาความไม่ลงรอยกันของภาพ หากต้องการใช้ UCP ให้ใช้ LTSB Windows release ปัจจุบันและไม่ใช่ 1709