Page tree

Versions Compared

Key

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

...

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

# if you want to run smart on your computer
local> docker pull
...

# make sure that the databaesdatabase is running
local> docker-compose up -d db_service
...

# wait a few seconds before the next step in order to let the database comestart
up
...

# start up the docker environment
local> docker-compose up

...