Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagebash
titleEpics support/example
docker run -p 5064:5064/udp -p 5064:5064/tcp -p 5065:5065/udp -p 5065:5065/tcp -v .:/mnt -it ghcr.io/infn-epics/infn-epics-ioc-linux-developer:latest bash
## docker shell
cd /mnt ## go in the . directory that is mounted 
mkdir mynewiocsample
cd mynewuicsample
makeBaseApp.pl -t example mynewiocsample # create DB and support
makeBaseApp.pl -i -t example mynewiocsample  # create iocboot directory

make
cd mynewiocsample/iocboot/mynewiocsample # st.cmd


It use the EPICS scripts makeBaseApp.pl to create a valid ioc tree directory tree.

...