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:18:34 UTC

cxf git commit: Initial docker-compose.yml for spring-boot-scan

Repository: cxf
Updated Branches:
  refs/heads/master 5813a363b -> ff0a8077c


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/ff0a8077
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/ff0a8077
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/ff0a8077

Branch: refs/heads/master
Commit: ff0a8077ce656e8577accd6e3ea5fa7c4a475c7b
Parents: 5813a36
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:18:19 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/ff0a8077/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/ff0a8077/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" 
+
+