Skip to content

Commit

Permalink
Merge pull request #20 from epics-containers/gateways
Browse files Browse the repository at this point in the history
update pvagw and gateway to use new gateways container image
  • Loading branch information
gilesknap authored Jan 7, 2025
2 parents 01b23bd + 9fcd159 commit b0272d2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
10 changes: 8 additions & 2 deletions services/gateway/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ services:

container_name: ca-gateway

image: ghcr.io/epics-containers/docker-ca-gateway:2.1.3ec1
image: ghcr.io/epics-containers/gateways-developer:2024.12.3

security_opt:
- label=disable
Expand All @@ -37,7 +37,13 @@ services:
- source: ca-gateway_config
target: /config

command: -cip ${CA_BROADCAST} -pvlist /config/pvlist -access /config/access -log /dev/stdout -debug 1
command:
- bash
- -c
- >
/epics/ca-gateway/bin/linux-x86_64/gateway
-cip ${CA_BROADCAST} -pvlist /config/pvlist
-access /config/access -log /dev/stdout -debug 1
profiles:
- test
Expand Down
7 changes: 5 additions & 2 deletions services/pvagw/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
pvagw: &pvagw
container_name: pvagw

image: ghcr.io/epics-containers/ec-p4p:4.1.12ec1
image: ghcr.io/epics-containers/gateways-developer:2024.12.3

depends_on:
- init
Expand All @@ -31,7 +31,10 @@ services:
- source: pvagw_config
target: /config

command: -c "pvagw /config/pvagw.config --debug"
command:
- pvagw
- /config/pvagw.config
- --debug

profiles:
- test
Expand Down

0 comments on commit b0272d2

Please sign in to comment.