diff --git a/.copier-answers.yml b/.copier-answers.yml index 0a733dd..3ef472b 100644 --- a/.copier-answers.yml +++ b/.copier-answers.yml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier; NEVER EDIT MANUALLY -_commit: 3.5.1b1-1-g7c57818 +_commit: 3.5.1b1-3-g7c84c44 _src_path: gh:epics-containers/ioc-template description: A test instantiation of the ioc-template copier template git_platform: github.com diff --git a/README.md b/README.md index a5c607b..7b59f42 100644 --- a/README.md +++ b/README.md @@ -15,4 +15,20 @@ To update to the latest version of the template: pip install copier cd ioc-template-example copier update -a --trust . -``` \ No newline at end of file +``` + +## Developer Container + +This repository includes a developer container configuration for Visual Studio Code. This allows you to run the Generic IOC locally and debug it. See https://epics-containers.github.io/main/tutorials/dev_container.html. + +### IMPORTANT: First Time Preparation + +The devcontainer uses a docker network that it can share with a ca-gateway in order that your PVs are accessible from your host machine. We arrange to create this network once and as long as you don't delete it or reset docker it will be available for all your devcontainers going forward. + +To create the network run the following commands: + +```bash +cd ioc-adsimdetector +source ./compose/environment.sh +``` +