meetup-golang-2024-demo/main.go

27 lines
535 B
Go
Raw Normal View History

2024-05-29 10:09:31 +00:00
package main
import (
2024-05-29 12:21:23 +00:00
"embed"
2024-05-29 10:09:31 +00:00
"io"
"log"
"net/http"
)
2024-05-29 12:21:23 +00:00
//go:embed index.html style.css
var staticfiles embed.FS
2024-05-29 10:12:13 +00:00
2024-05-29 10:09:31 +00:00
func main() {
http.HandleFunc("GET /containers", func(w http.ResponseWriter, r *http.Request) {
rd, err := curl("/var/run/docker.sock", "GET", "http://d/v1.43/containers/json?all=true")
if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
} else {
io.Copy(w, rd)
}
})
2024-05-29 12:21:23 +00:00
http.Handle("GET /", http.FileServer(http.FS(staticfiles)))
2024-05-29 10:09:31 +00:00
log.Fatal(http.ListenAndServe(":8080", nil))
}