mirror of
https://github.com/zokradonh/kopano-docker
synced 2025-06-07 07:56:12 +00:00
* replace bash function to list docker tags with https://github.com/genuinetools/reg/ * this depends on new release in https://github.com/genuinetools/reg/issues/186 to fully function * update docker version * fix version.sh to also show versions from repos defined in .env * add script to list available tags and update values in .env * define default values for all version vars * add previously missing containers * use command instead of hash in update env script * use a custom select function instead shell builtin (since it does not handle default values) * add setup-update-tag in test.exp
29 lines
263 B
Plaintext
Executable File
29 lines
263 B
Plaintext
Executable File
#!/usr/bin/expect
|
|
|
|
# uncomment to debug expect:
|
|
#exp_internal 1
|
|
|
|
spawn "./setup.sh"
|
|
|
|
expect {
|
|
"]:" {
|
|
send "\r"
|
|
exp_continue
|
|
}
|
|
"):" {
|
|
send "\r"
|
|
exp_continue
|
|
}
|
|
eof
|
|
}
|
|
|
|
spawn "./setup-update-tag.sh"
|
|
|
|
expect {
|
|
"#?" {
|
|
send "\r"
|
|
exp_continue
|
|
}
|
|
eof
|
|
}
|