From 280d35e389a27e66a16990a7ddf08ba70f1f12cd Mon Sep 17 00:00:00 2001 From: Jan David Mol <mol@astron.nl> Date: Wed, 18 May 2022 11:48:51 +0200 Subject: [PATCH] Update installation procedure to reflect this repo --- docs/source/installation.rst | 15 ++++----------- 1 file changed, 4 insertions(+), 11 deletions(-) diff --git a/docs/source/installation.rst b/docs/source/installation.rst index ce3d706..802117c 100644 --- a/docs/source/installation.rst +++ b/docs/source/installation.rst @@ -10,19 +10,12 @@ You will need the following dependencies installed: You start with checking out the source code, f.e. the master branch, as well as the git submodules we use:: - git clone https://git.astron.nl/lofar2.0/tango.git - cd tango + git clone https://git.astron.nl/lofar2.0/operations-central-management.git + cd operations-central-management git submodule init git submodule update -Next, we bootstrap the system. This will build our docker images, start key ones, and load the base configuration. This may take a while:: - - cd docker-compose - make bootstrap - -If you do have access to LOFAR station hardware, you must upload its configuration to the configuration database. See :doc:`configure_station`. - -Now we are ready to start the other containers:: +To start the software, just start the containers:: make start @@ -30,4 +23,4 @@ and make sure they are all up and running:: make status -You should see all containers either in the ``Up`` state or in ``Exit 0``. If not, you can inspect why with ``docker logs <container>``. Note that the containers will automatically be restarted on failure, and also if you reboot. Stop them explicitly to bring them down (``make stop <container>``). +You should see all containers in the ``Up`` state. If not, you can inspect why with ``docker logs <container>``. Note that the containers will automatically be restarted on failure, and also if you reboot. Stop them explicitly to bring them down (``make stop <container>``). -- GitLab