Skip to content

Commit

Permalink
Merge pull request #131 from elisasre/fix/compose-wait
Browse files Browse the repository at this point in the history
Add --wait to compose up
  • Loading branch information
heppu authored Apr 11, 2024
2 parents 5924abe + 734abea commit 25acab1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docker/target/docker.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func (Docker) Build(ctx context.Context) error {

// Up start containers in daemon mode
func (Docker) Up(ctx context.Context) error {
return docker.Docker(ctx, "compose", "up", "-d")
return docker.Docker(ctx, "compose", "up", "-d", "--wait")
}

// Down stops containers in daemon mode
Expand Down

0 comments on commit 25acab1

Please sign in to comment.