File tree 2 files changed +7
-1
lines changed
core/src/main/kotlin/org/evomaster/core
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,10 @@ ENTRYPOINT [ \
19
19
# Run
20
20
# docker run webfuzzing/evomaster <options>
21
21
#
22
+ # Publish (latest, otherwise tag with :TAG)
23
+ # docker login
24
+ # docker push webfuzzing/evomaster
25
+ #
22
26
# Example remote BB
23
27
# docker run -v "/$(pwd)/generated_tests":/generated_tests webfuzzing/evomaster --blackBox true --bbSwaggerUrl https://api.apis.guru/v2/openapi.yaml --outputFormat JAVA_JUNIT_4 --maxTime 10s --ratePerMinute 60
24
28
#
Original file line number Diff line number Diff line change @@ -102,7 +102,9 @@ class Main {
102
102
LoggingUtil .getInfoLogger().warn(
103
103
inYellow(
104
104
" White-box testing (default in EvoMaster) is currently not supported / not recommended in Docker." +
105
- " To run EvoMaster in black-box mode, you can use --blackBox true."
105
+ " To run EvoMaster in black-box mode, you can use '--blackBox true'." +
106
+ " If you need to run in white-box mode, it is recommended to download an OS installer or" +
107
+ " the uber JAR file from the release-page on GitHub."
106
108
)
107
109
)
108
110
}
You can’t perform that action at this time.
0 commit comments