...
SOFT IOC Development SoftIOC in a Linux-like environment
EPICS IOC/support
The A docker image that can be used as base epics7 for a development is is:
baltig.infn.it:4567/epics-containers/infn-epics-baseioc:devel
It contains several support modules used in deployment.
So for instance to start a shell and mount the current directory '.' to /mnt :
...
| Code Block | ||||
|---|---|---|---|---|
| ||||
docker run -v .:/mnt -it baltig.infn.it:4567/epics-containers/infn-epics-baseioc:devel bash ## docker shell cd /mnt ## go in the . directory that is mounted mkdir mynewiocsample cd mynewuicsample makeBaseApp.pl -t example mynewiocsample make |
...