2019-09-26から1日間の記事一覧

DockerfileでDocker起動

DockerfileでDocker起動 Dockerfile作成 ビルド ビルドします docker build -t my-rails-app . docker-compose vi docker-compose.yml version: "3" services: golang: image: golang:1.9.3-alpine3.7 tty: true コンテナのVolume設定 先程作ったdocker-comp…

GoでHTTPサーバしてHTMLに変数バインド

ロースペックでも開発は可能 hello.html vi hello.htmlで以下作成 <html> <head> <meta charset="UTF-8"> <title>{{.Title}}</title> </head> <body> {{.Title}} {{.Count}} count </body> </html> hello.go vi hello.goで以下作成 package main import ( "net/http" "text/template" ) type Page struct { Title string Count int…