Skip to content

Commit

Permalink
Add explicit port to exports as using non-standard
Browse files Browse the repository at this point in the history
  • Loading branch information
DiamondJoseph committed Jan 7, 2025
1 parent b0272d2 commit 7ca949e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit 7ca949e

Please sign in to comment.