File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -47,24 +47,24 @@ disk: 2048
47
47
48
48
# The mounts that will be performed when the package is deployed.
49
49
mounts :
50
- " /app /cache " : " shared:files/cache"
51
- " /app /logs " : " shared:files/logs"
50
+ " /var /cache " : " shared:files/cache"
51
+ " /var /logs " : " shared:files/logs"
52
52
53
53
# The hooks that will be performed when the package is deployed.
54
54
hooks :
55
55
build : |
56
56
rm web/app_dev.php
57
57
# place sqlite file into /tmp so that we can write to it during deploy
58
58
sed -i 's@%kernel.root_dir%/app.sqlite@/tmp/app.sqlite@' app/config/parameters.yml
59
- app /console --env=prod assets:install -n --no-debug
60
- app /console --env=prod assetic:dump -n --no-debug
59
+ bin /console --env=prod assets:install -n --no-debug
60
+ bin /console --env=prod assetic:dump -n --no-debug
61
61
deploy : |
62
62
# force clearing the cache
63
- rm -rf app /cache
64
- app /console doctrine:phpcr:init:dbal --drop --force -n
65
- app /console doctrine:phpcr:repository:init -n
66
- app /console doctrine:phpcr:fixtures:load -n
67
- app /console --env=prod cache:warmup -n --no-debug
63
+ rm -rf var /cache
64
+ bin /console doctrine:phpcr:init:dbal --drop --force -n
65
+ bin /console doctrine:phpcr:repository:init -n
66
+ bin /console doctrine:phpcr:fixtures:load -n
67
+ bin /console --env=prod cache:warmup -n --no-debug
68
68
69
69
runtime :
70
70
extensions :
You can’t perform that action at this time.
0 commit comments