Skip to content

Commit

Permalink
Updates Infinispan Quickstart with renamed properties
Browse files Browse the repository at this point in the history
  • Loading branch information
karesti committed Jan 4, 2023
1 parent b1c57d3 commit 0a53ce6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions infinispan-client-quickstart/docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ services:
infinispan-server:
image: infinispan/server:latest
environment:
- USER=Titus Bramble
- PASS=Shambles
- USER=admin
- PASS=password
ports:
- "11222:11222"
container_name: infinispan
Expand All @@ -27,10 +27,10 @@ services:
command: >
/bin/sh -c "
echo Waiting for Infinispan service start ...;
while ! curl --silent --output /dev/null --fail-early --user 'Titus Bramble:Shambles' http://infinispan:11222/rest/v2/server;
while ! curl --silent --output /dev/null --fail-early --user 'admin:password' http://infinispan:11222/rest/v2/server;
do
sleep 1;
done;
echo Infinispan service started!;
./application -Dquarkus.http.host=0.0.0.0 -Dquarkus.infinispan-client.server-list=infinispan:11222
./application -Dquarkus.http.host=0.0.0.0 -Dquarkus.infinispan-client.hosts=infinispan:11222
"
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Use the Infinispan Dev Service in dev and test
%prod.quarkus.infinispan-client.server-list=localhost:11222
%prod.quarkus.infinispan-client.auth-username=admin
%prod.quarkus.infinispan-client.auth-password=password
%prod.quarkus.infinispan-client.hosts=localhost:11222
%prod.quarkus.infinispan-client.username=admin
%prod.quarkus.infinispan-client.password=password

## Docker 4 Mac workaround
%prod.quarkus.infinispan-client.client-intelligence=BASIC

0 comments on commit 0a53ce6

Please sign in to comment.