You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/how-to/phoebus.md
+4-6Lines changed: 4 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,8 @@
2
2
3
3
Phoebus is a Java application that can be used to view operator interfaces.
4
4
5
-
epics-containers will support auto generation of engineering screens for
6
-
Phoebus using [PVI](https://github.com/epics-containers/pvi).
7
-
This is the initial target for epics-containers GUIs, other OPI
8
-
formats may be supported in the future.
5
+
epics-containers supports auto generation of engineering screens for Phoebus using [PVI](https://github.com/epics-containers/pvi). This is the initial target for epics-containers GUIs, other OPI formats may be supported in the future.
9
6
10
-
OPI file generation is work in progress and this page will be updated when
11
-
it is ready (est Feb 2024).
7
+
Auto-generation of engineering screens is now supported in generic IOCs.
8
+
9
+
See here for an example https://github.com/epics-containers/example-services.
Copy file name to clipboardExpand all lines: docs/tutorials/create_ioc.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,12 +38,12 @@ code .
38
38
39
39
Our new example IOC will be a simulation detector using the AreaDetector SimDetector. There is already a Generic IOC for the SimDetector, therefore to create an IOC Instance, we just need to refer to that Generic IOC container image and provide some configuration for it.
40
40
41
-
You can find the Generic IOC container source for SimDetector here: <https://github.com/epics-containers/ioc-adsimdetector>. This repository publishes its container image at: `ghcr.io/epics-containers/ioc-adsimdetector-runtime:2024.8.2`. Later tutorials will cover how to build and publish your own Generic IOC container images.
41
+
You can find the Generic IOC container source for SimDetector here: <https://github.com/epics-containers/ioc-adsimdetector>. This repository publishes its container image at: `ghcr.io/epics-containers/ioc-adsimdetector-runtime:2024.9.1`. Later tutorials will cover how to build and publish your own Generic IOC container images.
42
42
43
43
Edit the `compose.yml` file in the `bl01t-ea-cam-01` folder to reflect the new IOC name and to refer to the Generic IOC container image for the SimDetector:
44
44
45
45
- find and replace **replace_me** with **bl01t-ea-cam-01**
46
-
- replace **replace_with_image_uri** with **ghcr.io/epics-containers/ioc-adsimdetector-runtime:2024.8.2**
46
+
- replace **replace_with_image_uri** with **ghcr.io/epics-containers/ioc-adsimdetector-runtime:2024.9.1**
47
47
48
48
That's it for the `compose.yml` file. This file is essentially boilerplate and would look very similar for every IOC Instance you create. The two unique things that this file does are:
0 commit comments