You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2017/08/18 14:26:50 UTC

[1/2] cxf git commit: Using the env var for the user

Repository: cxf
Updated Branches:
  refs/heads/3.1.x-fixes e5c1bea95 -> 6b77e0261


Using the env var for the user


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/6b77e026
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/6b77e026
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/6b77e026

Branch: refs/heads/3.1.x-fixes
Commit: 6b77e02616f37500fafffb5ea873137638062e14
Parents: 2b488ef
Author: Sergey Beryozkin <sb...@gmail.com>
Authored: Fri Aug 18 15:24:20 2017 +0100
Committer: Sergey Beryozkin <sb...@gmail.com>
Committed: Fri Aug 18 15:26:28 2017 +0100

----------------------------------------------------------------------
 .../release/samples/jax_rs/spring_boot_scan/docker-compose.yml   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/6b77e026/distribution/src/main/release/samples/jax_rs/spring_boot_scan/docker-compose.yml
----------------------------------------------------------------------
diff --git a/distribution/src/main/release/samples/jax_rs/spring_boot_scan/docker-compose.yml b/distribution/src/main/release/samples/jax_rs/spring_boot_scan/docker-compose.yml
index 47cc53f..c468450 100644
--- a/distribution/src/main/release/samples/jax_rs/spring_boot_scan/docker-compose.yml
+++ b/distribution/src/main/release/samples/jax_rs/spring_boot_scan/docker-compose.yml
@@ -1,11 +1,11 @@
 version: "3"
 services:
   eureka:
-    image: sberyozkin/apachecxf:spring-boot-sample-rs-scan-eureka
+    image: $USER/apachecxf:spring-boot-sample-rs-scan-eureka
     ports:
       - "8761:8761"
   jaxrs:
-    image: sberyozkin/apachecxf:spring-boot-sample-rs-scan-app
+    image: $USER/apachecxf:spring-boot-sample-rs-scan-app
     ports:
       - "8080:8080"
     network_mode: "host" 


[2/2] cxf git commit: Initial docker-compose.yml for spring-boot-scan

Posted by se...@apache.org.
Initial docker-compose.yml for spring-boot-scan


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/2b488ef7
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/2b488ef7
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/2b488ef7

Branch: refs/heads/3.1.x-fixes
Commit: 2b488ef7728b7d15dd663a7e7c841f0adfca5c89
Parents: e5c1bea
Author: Sergey Beryozkin <sb...@gmail.com>
Authored: Fri Aug 18 15:18:19 2017 +0100
Committer: Sergey Beryozkin <sb...@gmail.com>
Committed: Fri Aug 18 15:26:28 2017 +0100

----------------------------------------------------------------------
 .../release/samples/jax_rs/spring_boot_scan/README     |  3 +++
 .../samples/jax_rs/spring_boot_scan/docker-compose.yml | 13 +++++++++++++
 2 files changed, 16 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/2b488ef7/distribution/src/main/release/samples/jax_rs/spring_boot_scan/README
----------------------------------------------------------------------
diff --git a/distribution/src/main/release/samples/jax_rs/spring_boot_scan/README b/distribution/src/main/release/samples/jax_rs/spring_boot_scan/README
index b8db25f..e8b8960 100644
--- a/distribution/src/main/release/samples/jax_rs/spring_boot_scan/README
+++ b/distribution/src/main/release/samples/jax_rs/spring_boot_scan/README
@@ -7,5 +7,8 @@ Check eureka-registry/README on how to run Eureka Registry.
 
 Check application/README on how to run a server application.
 
+Note: you can have both the registry and the server application started by running "docker-compose up" in this directory. 
+
 Check client/README on how to run a command line client.
 
+

http://git-wip-us.apache.org/repos/asf/cxf/blob/2b488ef7/distribution/src/main/release/samples/jax_rs/spring_boot_scan/docker-compose.yml
----------------------------------------------------------------------
diff --git a/distribution/src/main/release/samples/jax_rs/spring_boot_scan/docker-compose.yml b/distribution/src/main/release/samples/jax_rs/spring_boot_scan/docker-compose.yml
new file mode 100644
index 0000000..47cc53f
--- /dev/null
+++ b/distribution/src/main/release/samples/jax_rs/spring_boot_scan/docker-compose.yml
@@ -0,0 +1,13 @@
+version: "3"
+services:
+  eureka:
+    image: sberyozkin/apachecxf:spring-boot-sample-rs-scan-eureka
+    ports:
+      - "8761:8761"
+  jaxrs:
+    image: sberyozkin/apachecxf:spring-boot-sample-rs-scan-app
+    ports:
+      - "8080:8080"
+    network_mode: "host" 
+
+