gvm-containers icon indicating copy to clipboard operation
gvm-containers copied to clipboard

Add a global launcher to start (and update) everything

Open jaubin opened this issue 3 years ago • 0 comments

Hi,

I've created a simple launcher that basically does the job of refreshing everything and launching all. It basically automates what you described in the readme.

Below is the code, may it help :+1:

#!/bin/bash

cd $(dirname $0)/gvm-containers
git pull

for i in nvt-sync.yml cert-sync.yml scap-sync.yml gvmd-data-sync.yml
do
  docker-compose -f $i up
done

docker-compose up

jaubin avatar Apr 13 '21 20:04 jaubin