Last active
October 22, 2020 21:05
-
-
Save BrianSidebotham/55ed7974cebc4a02a0e46733eb515551 to your computer and use it in GitHub Desktop.
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
Proxmox Settings for VM | |
----------------------- | |
Set CPU=host from the VM's hardware menu | |
Enable Hyper-V in Host | |
---------------------- | |
Via the GUI Hyper-V cannot be installed. So instead, from Powershell: | |
> Enable-WindowsOptionalFeature –Online -FeatureName Microsoft-Hyper-V –All -NoRestart | |
WARNING: Restart is suppressed because NoRestart is specified. | |
Path : | |
Online : True | |
RestartNeeded : True | |
> Install-WindowsFeature RSAT-Hyper-V-Tools -IncludeAllSubFeature | |
Success Restart Needed Exit Code Feature Result | |
------- -------------- --------- -------------- | |
True Yes SuccessRest... {Hyper-V Module for Windows PowerShell, Hy... | |
Reboot VM | |
Install Docker for Windows: https://hub.docker.com/editions/community/docker-ce-desktop-windows/ | |
Gitlab | |
------ | |
Add any root CA you need - http://woshub.com/updating-trusted-root-certificates-in-windows-10/ | |
Download and register the runner https://docs.gitlab.com/runner/install/windows.html: | |
Downloads> .\gitlab-runner-windows-amd64.exe register | |
Then install the service and start it: | |
> .\gitlab-runner.exe install | |
> .\gitlab-runner.exe start | |
<** Answer all of the questions **> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment