Ability to dockerize a Beego application

This introduces a new command "dockerize" which will generate
a Dockerfile to allow a Beego Web Application to run inside Docker.
This commit is contained in:
Faissal Elamraoui
2016-12-22 18:10:45 +01:00
parent 77acc749e4
commit 81c6de6cb3
2 changed files with 113 additions and 0 deletions

1
bee.go
View File

@ -126,6 +126,7 @@ var availableCommands = []*Command{
//cmdRundocs,
cmdMigrate,
cmdFix,
cmdDockerize,
}
var logger = GetBeeLogger(os.Stdout)