...
SOFT IOC Development SoftIOC in a Linux-like environment
EPICS IOC/support
The docker that can be used as base for a development is
baltig.infn.it:4567/epics-containers/epics-base
So for instance to start a shell and mount the current directory '.' to /mnt :
The example here below initialize a directory with a standard ioc/support tree:
| Code Block | ||||
|---|---|---|---|---|
| ||||
docker run -v .:/mnt -it baltig.infn.it:4567/epics-containers/epics-base bash
mkdir mynewiocsample
cd mynewuicsample
makeBaseApp.pl -t example mynewiocsample
make |
Deploy on the target EPIK8S
...