Skip to content
Snippets Groups Projects

5534 add docker

Merged Hahn Axel (hahn) requested to merge 5534-add-docker into master
2 files
+ 26
30
Compare changes
  • Side-by-side
  • Inline

Files

+ 24
28
@@ -39,51 +39,47 @@ return [
'ip'=> ['127.0.0.1'],
],
'projectgroups' => array(
'aae'=>'AAE',
'aum'=>'AUM',
'eosce'=>'EOSCE',
'iml'=>'IML Services and websites',
'measured'=>'Measured',
'medsurf'=>'Medsurf',
),
'projectgroups' => [
'teamA'=>'Team A: Services',
'teamB'=>'Team B: Website',
],
// ----------------------------------------------------------------------
// build settings
// ----------------------------------------------------------------------
'versionsToKeep' => 10, // for cleanup: keep n unused versions
'builtsToKeep' => 3,
'build' => array(
'build' => [
'env' => 'export RVMSCRIPT="/usr/local/rvm/scripts/rvm";',
'hooks' => array(
'hooks' => [
'build-postclone' => 'hooks/onbuild-postclone',
'build-precompress' => 'hooks/onbuild',
),
),
],
],
// ----------------------------------------------------------------------
// rsync of archives
// ----------------------------------------------------------------------
'mirrorPackages' => array(
'mirrorPackages' => [
/*
// (1)
// sync to a puppet master puppet to extract archive and generate templates
'puppet' => array(
'puppet' => [
'type' => 'rsync',
'runas' => '', // www-data, // nur fuer commandline
'target' => 'copy-deployment@puppetmaster.example.com:/share/ciserver',
),
],
// (2)
// sync to a software package server like https://os-docs.iml.unibe.ch/ci-pkg/
'package-server' => array(
'package-server' => [
'type' => 'rsync',
'runas' => '', // www-data, // nur fuer commandline
'target' => 'copy-deployment@software.example.com:/var/www/data-ciserver',
),
],
*/
),
],
// ----------------------------------------------------------------------
// plugins
@@ -116,20 +112,20 @@ return [
// ----------------------------------------------------------------------
// notifications to messengers ...
'messenger'=>array(
'slack'=>array(
'presets'=>array(
'https://hooks.slack.com/services/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'=>array(
'messenger'=>[
'slack'=>[
'presets'=>[
'https://hooks.slack.com/services/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'=>[
'label'=>'#medsurf-heartbeat',
'user'=>'[CI-WebGUI]',
),
'https://hooks.slack.com/services/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'=>array(
],
'https://hooks.slack.com/services/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'=>[
'label'=>'#msrd-analyzer-hrtbeat',
'user'=>'[CI-WebGUI]',
),
),
),
),
],
],
],
],
// ----------------------------------------------------------------------
];
\ No newline at end of file
Loading