-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathechoExample.corgi-compose.yml
35 lines (34 loc) · 1.08 KB
/
echoExample.corgi-compose.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
db_services:
corgi:
databaseName: corgi-database
user: corgi
password: corgiSecurePassword
port: 5432
corgiTest:
databaseName: corgi-database-test
user: corgi
password: corgiSecurePasswordTest
port: 5433
services:
corgiServer:
beforeStart:
- echo "beforeStart example cmd 1 for corgiServer"
- echo "beforeStart example cmd 2 for corgiServer"
start:
- echo "start example cmd 1 for corgiServer"
- echo "start example cmd 2 for corgiServer"
- echo "start example cmd 3 for corgiServer"
afterStart:
- echo "afterStart example cmd 1 for corgiServer"
- echo "afterStart example cmd 2 for corgiServer"
corgiApp:
beforeStart:
- echo "beforeStart example cmd 1 for corgiApp"
- echo "beforeStart example cmd 2 for corgiApp"
start:
- echo "start example cmd 1 for corgiApp"
- echo "start example cmd 2 for corgiApp"
- echo "start example cmd 3 for corgiApp"
afterStart:
- echo "afterStart example cmd 1 for corgiApp"
- echo "afterStart example cmd 2 for corgiApp"