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
Copy file name to clipboardExpand all lines: articles/service-fabric/service-fabric-tutorial-java-jenkins.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ ms.devlang: java
13
13
ms.topic: tutorial
14
14
ms.tgt_pltfrm: NA
15
15
ms.workload: NA
16
-
ms.date: 02/26/2018
16
+
ms.date: 08/27/2018
17
17
ms.author: suhuruli
18
18
ms.custom: mvc
19
19
@@ -49,10 +49,10 @@ You can set up Jenkins either inside or outside a Service Fabric cluster. The fo
49
49
50
50
1. Pull the Service Fabric Jenkins container image: ``docker pull rapatchi/jenkins:v10``. This image comes with Service Fabric Jenkins plugin pre-installed.
51
51
52
-
1. Run the container image with the location where your certificates are on your local machine mounted
52
+
1. Run the container image with the location where your Azure certificates are stored on your mounted local machine.
53
53
54
54
```bash
55
-
docker run -itd -p 8080:8080 -v /Users/suhuruli/Documents/Work/Samples/service-fabric-java-quickstart/AzureCluster:/tmp/myCerts rapatchi/jenkins:v10
55
+
docker run -itd -p 8080:8080 -v /service-fabric-java-quickstart/AzureCluster rapatchi/jenkins:v10
56
56
```
57
57
58
58
1. Get the ID of the container image instance. You can list all the Docker containers with the command``docker ps –a``
@@ -82,7 +82,7 @@ You can set up Jenkins either inside or outside a Service Fabric cluster. The fo
82
82
83
83
1. First, if you do not have a repository that you can use to host the Voting project on Github, create one. The repository is called **dev_test**for the remaining of this tutorial.
84
84
85
-
1. Create a **new item** on your Jenkins dashboard.
85
+
1. Create a **new item** on your Jenkins dashboard at ``http://<HOST-IP>:8080``.
86
86
87
87
1. Enter an item name (for example, **MyJob**). Select **free-style project**, and click **OK**.
88
88
@@ -120,6 +120,8 @@ You can set up Jenkins either inside or outside a Service Fabric cluster. The fo
120
120
> The cluster here could be same as the one hosting the Jenkins container application, incase you are using Service Fabric to deploy the Jenkins container image.
121
121
>
122
122
123
+
1. Click **Save**.
124
+
123
125
## Update your existing application
124
126
125
127
1. Update the title of the HTML in the *VotingApplication/VotingWebPkg/Code/wwwroot/index.html* file with **Service Fabric Voting Sample V2**.
0 commit comments