-
Notifications
You must be signed in to change notification settings - Fork 0
/
zerops.yml
33 lines (29 loc) · 1002 Bytes
/
zerops.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
# hostname of your service
# (supports monorepositories! just add
# one service section after the other)
phpnginx0:
# ==== how to build your application ====
build:
# select what technology should the
# build container be based on, can
# be different from service technology
# see docs for full list
base: [php@8.0]
# *optional* add additional dependencies
# on top of base technology (combination
# will be cached for next build)
# prepare:
# - apt-get something
# - curl otherthing
# build your application
#build:
# - composer install --optimize-autoloader --no-dev
# select which files / folders to deploy
# after the build succesfully finished
# make sure our nginx root points to the
# correct folder, every enty of the
# deploy parametr will be placed at /var/www
deploy: [./]
# *optional*: which files / folders
# to cache for the next use
cache: [vendor]