Skip to content
Snippets Groups Projects

5534 add docker

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

Files

+ 14
14
@@ -72,18 +72,18 @@ return [
// ----------------------------------------------------------------------
'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',
),
),
],
],
// ----------------------------------------------------------------------
// sync of archives
// ----------------------------------------------------------------------
'mirrorPackages' => array(
'mirrorPackages' => [
/*
// (1)
@@ -102,7 +102,7 @@ return [
'target' => 'copy-deployment@software.example.com:/var/www/data-ciserver',
),
*/
),
],
// ----------------------------------------------------------------------
// plugins
@@ -146,23 +146,23 @@ return [
// TODO: functionality to be removed?!
// ----------------------------------------------------------------------
'foreman' => array(
'foreman__' => [
'api'=>'https://foreman.example.com/', // with ending "/"
'user'=>'ci-server',
'password'=>'ciserver_password_here',
'ignore-ssl-error'=>true,
// 'varname-replace'=>'ci-replacement',
),
],
// where to store project data
'projects' => array(
'json' => array(
'projects' => [
'json' => [
'active' => true,
),
'ldap' => array(
],
'ldap' => [
'active' => false,
),
),
],
],
// ----------------------------------------------------------------------
];
\ No newline at end of file
Loading