Page tree

Versions Compared

Key

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

...

Info
titleOn Linux

The Docker daemon should have been started automatically.

Code Block
# startup docker-composeinfrastructure
cli> docker-compose up./infrastructure.sh run

Update Infrastructure

Occasionally you may want to upgrade to the latest version of the infrastructure.

Note

This may erase the content of your database and you will have to reprocess the data.

This is certainly something we need to improve.

Code Block
cli> curl -o docker-compose.yml https://dev.flarecast.eu/stash/projects/INFRA/repos/dev-infra/browse/docker-compose.yml?raw cli> docker-compose pull

Sometimes it may be necessary to upgrade the whole database (e.g. schema changed).

In such a case you may get an error about the database was not able to start. You have then to delete your old database to use the most current version and your old data will be lost.

Code Block
cli> ./infrastructure.sh update

Open FLARECAST Pipeline Management Console

...