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:24:35 UTC

cxf git commit: Using the env var for the user

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


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

Branch: refs/heads/master
Commit: bd0408ca9c9c420d359ea135adeadaa1f434dffc
Parents: ff0a807
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:24:20 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/bd0408ca/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"