Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.48 KB

README.md

File metadata and controls

44 lines (33 loc) · 1.48 KB

docker-epics

This repository contains the source files (Dockerfiles, ...) to create the images:

epics_base

The epics_base image contains a the EPICS base installation. It also comes with a ready-to-use example IOC, which can be handy for quick testing.

To start the example IOC in background (-d), run:

docker run \
  --rm -it -d \
  --name my-ioc \
  -p 5064-5065:5064-5065 \
  -p 5064-5065:5064-5065/udp \
  -w /epics/iocs/example/iocBoot/iocEXAMPLE \
  pklaus/epics_base:7.0.4_debian \
  ./st.cmd

To attach to the IOC shell, run:

docker attach my-ioc

Enter Ctrl + p Ctrl + q to detach from the shell or Ctrl + d to quit the IOC.