Skip to content

Commit

Permalink
Hardening
Browse files Browse the repository at this point in the history
  • Loading branch information
pun-ky committed Apr 16, 2021
1 parent 9540bca commit b5c4f05
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Docker(val environment: EnvironmentExtension) {

val running: Boolean get() = stack.running && containers.running

val up: Boolean get() = stack.running && containers.up
val up: Boolean get() = composeFile.get().asFile.exists() && stack.running && containers.up

/**
* Represents Docker stack and provides API for manipulating it.
Expand Down

0 comments on commit b5c4f05

Please sign in to comment.