now re-pulls Image regularily
ci/woodpecker/push/woodpecker Pipeline failed
Details
ci/woodpecker/push/woodpecker Pipeline failed
Details
parent
0e21438cc8
commit
e5c78de08f
|
@ -41,6 +41,7 @@ func ConnectSocket() {
|
|||
}
|
||||
|
||||
func PullImage() error {
|
||||
for {
|
||||
log.Println("Downloading Container image ", viper.GetString("image"))
|
||||
image := viper.GetString("image")
|
||||
conn := Socket
|
||||
|
@ -49,7 +50,10 @@ func PullImage() error {
|
|||
log.Println(err)
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
|
||||
time.Sleep(1 * time.Hour)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
// Cleanup deletes Containers older than the specified maximum Age (Equal to session cookie maximum age)
|
||||
|
|
Loading…
Reference in New Issue