From 7ca949e4643dff195989b3142861d229aa5ea5e2 Mon Sep 17 00:00:00 2001 From: "Ware, Joseph (DLSLtd,RAL,LSCI)" Date: Tue, 7 Jan 2025 15:49:41 +0000 Subject: [PATCH] Add explicit port to exports as using non-standard --- README.md | 4 ++-- environment.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 9b57e18..12029e5 100644 --- a/README.md +++ b/README.md @@ -64,12 +64,12 @@ You can now try the following (we use `dc` as a short alias for `docker compose` ```bash # use caget/put locally -export EPICS_CA_ADDR_LIST=127.0.0.1 +export EPICS_CA_ADDR_LIST=127.0.0.1:5094 caget BL01T-DI-CAM-01:DET:Acquire_RBV # OR if you don't have caget/put locally then use one of the containers instead: docker compose exec bl01t-ea-test-01 bash -export EPICS_CA_ADDR_LIST=127.0.0.1 +export EPICS_CA_ADDR_LIST=127.0.0.1:5094 caget BL01T-DI-CAM-01:DET:Acquire_RBV # attach to logs of a service (-f follows the logs, use ctrl-c to exit) diff --git a/environment.sh b/environment.sh index 211899f..8b92f17 100755 --- a/environment.sh +++ b/environment.sh @@ -40,6 +40,6 @@ export UIDGID=$USER_ID:$USER_GID # default to the test profile for docker compose export COMPOSE_PROFILES=test # for test profile our ca-gateway publishes PVS on the loopback interface -export EPICS_CA_ADDR_LIST=127.0.0.1 +export EPICS_CA_ADDR_LIST=127.0.0.1:5094 # make a short alias for docker-compose for convenience alias dc='$docker compose'