From ac5f82ce82849b4ff1326b5c4d2f173067e14ba7 Mon Sep 17 00:00:00 2001 From: Jan David Mol <mol@astron.nl> Date: Wed, 29 Sep 2021 21:38:00 +0200 Subject: [PATCH] L2SS-379: Add docker device to Jupyter notebook --- .../stationcontrol-jupyter/startup/01-devices.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docker-compose/jupyter/ipython-profiles/stationcontrol-jupyter/startup/01-devices.py b/docker-compose/jupyter/ipython-profiles/stationcontrol-jupyter/startup/01-devices.py index fc4fd663d..f6174de98 100644 --- a/docker-compose/jupyter/ipython-profiles/stationcontrol-jupyter/startup/01-devices.py +++ b/docker-compose/jupyter/ipython-profiles/stationcontrol-jupyter/startup/01-devices.py @@ -5,6 +5,7 @@ sst = DeviceProxy("LTS/SST/1") xst = DeviceProxy("LTS/XST/1") unb2 = DeviceProxy("LTS/UNB2/1") boot = DeviceProxy("LTS/Boot/1") +docker = DeviceProxy("LTS/Docker/1") # Put them in a list in case one wants to iterate -devices = [recv, sdp, sst, xst, unb2, boot] +devices = [recv, sdp, sst, xst, unb2, boot, docker] -- GitLab