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
| #!/bin/sh | |
| # Initial set up script for Alpine as a Docker host in a Hyper-V VM | |
| # Based on https://wiki.alpinelinux.org/wiki/Docker and https://wiki.alpinelinux.org/wiki/Hyper-V_guest_services | |
| # Tested on Alpine 3.10 | |
| # wget -O - https://bit.ly/alpine-docker | sh | |
| # Include community repo and update/upgrade | |
| sed -i '/alpine\/v3.10\/community/s/^#*//g' /etc/apk/repositories | |
| apk update | |
| apk upgrade |