-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.kitchen.yml
39 lines (36 loc) · 925 Bytes
/
.kitchen.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
---
driver:
name: vagrant
provisioner:
name: chef_solo
platforms:
- name: ubuntu-14.04
# - name: centos-7.1
suites:
- name: default
run_list:
- recipe[::default]
attributes:
deploy:
application1:
deploy_to: "/srv/www/application1"
phinx
config_path: "./config/phinx.php",
app_env:
PHINX_ENV: "staging"
PHINX_DBHOST: "host"
PHINX_DBNAME: "dbname"
PHINX_DBUSER: "dbuser"
PHINX_DBPASS: "dbpass"
PHINX_DBPORT: "dbport"
application2:
deploy_to: "/srv/www/application2"
phinx
config_path: "./config/phinx.php",
app_env:
PHINX_ENV: "staging"
PHINX_DBHOST: "host"
PHINX_DBNAME: "dbname"
PHINX_DBUSER: "dbuser"
PHINX_DBPASS: "dbpass"
PHINX_DBPORT: "dbport"