Commit 00ba62308962ea71e421ed2e03e3575ce699e028

Authored by George Vlahavas
1 parent 0e34561b8b

Stop containers before starting them again

Just in case something is still up from previous runs.

Showing 1 changed file with 3 additions and 0 deletions

... ... @@ -32,6 +32,9 @@
32 32 # Keep the timestamp of when starting up containers
33 33 TIME_START=`date +%s`
34 34  
  35 +# Just in case something is up from previous runs
  36 +docker-compose -f docker-compose-jfrog.yml down
  37 +
35 38 # Run containers
36 39 docker-compose -f docker-compose-jfrog.yml up --detach
37 40