forked from tlongren/docker-wordpress-nginx-ssh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdistelli-manifest.yml
26 lines (21 loc) · 906 Bytes
/
distelli-manifest.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
tlongren/wordpress:
#The PkgInclude is to identify files that must be included in the application deployment: http://distel.li/pkgincludesection
PkgInclude:
- '*'
#The PreRelease section is for specifying build and pre-packaging steps: http://distel.li/prereleasesection
PreRelease:
- echo "Begin PreRelease"
#The PreInstall section occurs before install: distel.li/preinstallsection
PreInstall:
- echo "Begin PreInstall"
#- sudo apt-get -y update
#- sudo apt-get -y install php5
#- sudo apt-get -y install libapache2-mod-php5
#- sudo apt-get -y install apache2
#The PostInstall section occurs after install: http://distel.li/postinstallsection
PostInstall:
- echo "Begin PostInstall"
#- sudo cp -f ./webapp.php $HTML_DIR/
#The Start section starts a process that is not monitored: distel.li/execsection
Exec:
#- sudo service apache2 restart