@@ -4,7 +4,7 @@ services:
build:
context: ./
dockerfile: Dockerfile
- image: mytest:v1.0.0
+ image: mytest:v2.0.0
container_name: mytest
ports:
- "18080:8080"
@@ -8,6 +8,6 @@ public class TestController {
@GetMapping("/test")
public String test() {
- return "Hello Jenkins!";
+ return "Hello Jenkins! - v2.0.0";
}