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:51 UTC

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

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" 
+
+