windows docker go

1、go mkdir directory aaa create file go_httpserver.go package main import ( “fmt” “net/http” ) func handler(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w, “Welcome to my Website!!!\n %s”, r.URL.Path[1:]) } func main() { http.HandleFunc("/", handler) http.ListenAndServe(“0.0.0.0:80”, nil) } set GOARCH=amd64 set GOOS=linux go build go_httpserver.go => get linux go program 2、create docker image 2.1 install docker toolbox Link 2.2 run kitematic then see left-down DOCKER CLI , click it, then 2.2.1 create directory bbb 2.2.2 create Dockerfile ...

2017-12-13 · 1 min · 143 words · Me

[OK] install magento, mariadb use kitematic control docker on windows 10

1、First install kitematic 2、see video PS:remeber if login failed, just clear cookie. Then relogin two times. ========== user docker shell docker exec -ti xxxxoooo bash //xxxxoooo is docker name check hosts and use ping can link success ========== docker images

2017-07-04 · 1 min · 40 words · Me

Import!! install magento, mariadb use kitematic control docker on windows 10

Can’t use kitematic install mariadb, magento, because two container can’t connect get error msg: Failed to connect to mariadb:3306 after 36 tries How to do https://github.com/bitnami/bitnami-docker-joomla/issues/2 1、download https://raw.githubusercontent.com/bitnami/bitnami-docker-magento/master/docker-compose.yml 2、docker-compose up then everyting is ok ! Can’t Use!

2017-07-04 · 1 min · 37 words · Me

[轉]如何在每次 Windows 登入時自動啟動需要以系統管理員身分執行的程式

http://blog.miniasp.com/post/2017/02/27/Start-program-as-Administrator-in-Windows-10.aspx

2017-05-06 · 1 min · word · Me

remove windows app store app 除 小算盤

https://steachs.com/archives/14897 https://tatmingstudio.blogspot.tw/2015/08/Windows10-Metro-App-Crash-Fix.html Get-AppxPackage *windowscalculator* | Remove-AppxPackage Get-AppxPackage *3dbuilder* | Remove-AppxPackage Get-AppxPackage *windowsalarms* | Remove-AppxPackage Get-AppxPackage *windowscommunicationsapps* | Remove-AppxPackage Get-AppxPackage *windowscamera* | Remove-AppxPackage Get-AppxPackage *officehub* | Remove-AppxPackage Get-AppxPackage *skypeapp* | Remove-AppxPackage Get-AppxPackage *getstarted* | Remove-AppxPackage Get-AppxPackage *zunemusic* | Remove-AppxPackage Get-AppxPackage *windowsmaps* | Remove-AppxPackage Get-AppxPackage *solitairecollection* | Remove-AppxPackage Get-AppxPackage *bingfinance* | Remove-AppxPackage Get-AppxPackage *zunevideo* | Remove-AppxPackage Get-AppxPackage *bingnews* | Remove-AppxPackage Get-AppxPackage *onenote* | Remove-AppxPackage Get-AppxPackage *people* | Remove-AppxPackage Get-AppxPackage *windowsphone* | Remove-AppxPackage Get-AppxPackage *photos* | Remove-AppxPackage Get-AppxPackage *windowsstore* | Remove-AppxPackage Get-AppxPackage *bingsports* | Remove-AppxPackage Get-AppxPackage *soundrecorder* | Remove-AppxPackage Get-AppxPackage *bingweather* | Remove-AppxPackage ...

2017-03-11 · 1 min · 90 words · Me