gvm-containers
gvm-containers copied to clipboard
Add a global launcher to start (and update) everything
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