You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SkipPostDeploymentMigrationsbool`env:"SKIP_POST_DEPLOYMENT_MIGRATIONS" help:"Skip post-deployment migrations. Runs safe migrations only. Defers breaking-change migrations. Make sure you run post-deployment migrations after a full deploy is complete if you use this option."`
Copy file name to clipboardExpand all lines: launcher_go/v2/main.go
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18,6 +18,8 @@ type Cli struct {
18
18
BuildDirstring`default:"./tmp" hidden:"" help:"Temporary build folder for building images." predictor:"dir"`
19
19
BuildCmdDockerBuildCmd`cmd:"" name:"build" help:"Build a base image. This command does not need a running database. Saves resulting container."`
20
20
ConfigureCmdDockerConfigureCmd`cmd:"" name:"configure" help:"Configure and save an image with all dependencies and environment baked in. Updates themes and precompiles all assets. Saves resulting container."`
21
+
MigrateCmdDockerMigrateCmd`cmd:"" name:"migrate" help:"Run migration tasks for a site. Running container is temporary and is not saved."`
22
+
BootstrapCmdDockerBootstrapCmd`cmd:"" name:"bootstrap" help:"Builds, migrates, and configures an image. Resulting image is a fully built and configured Discourse image."`
0 commit comments