-
Notifications
You must be signed in to change notification settings - Fork 0
/
.lagoon.yml
48 lines (45 loc) · 1.12 KB
/
.lagoon.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
40
41
42
43
44
45
46
47
48
docker-compose-yaml: docker-compose.yml
project: typo3-example
tasks:
post-rollout:
- run:
name: Lock backend
command: vendor/bin/typo3 backend:lock
service: cli
shell: bash
- run:
name: Update DB
command: vendor/bin/typo3 database:updateschema "*" --verbose
service: cli
shell: bash
- run:
name: Cache Flush
command: vendor/bin/typo3 cache:flush
service: cli
shell: bash
- run:
name: Run pending upgrades
command: vendor/bin/typo3 upgrade:run
service: cli
shell: bash
- run:
name: Warmup cache
command: vendor/bin/typo3 cache:warmup
service: cli
shell: bash
- run:
name: Unlock backend
command: vendor/bin/typo3 backend:unlock
service: cli
shell: bash
lagoon-sync:
mariadb:
config:
hostname: "${DB_HOST:-db}"
username: "${DB_USERNAME:-db}"
password: "${DB_PASSWORD:-db}"
port: "${DB_PORT:-3306}"
database: "${DB_DATABASE:-db}"
files:
config:
sync-directory: "public/fileadmin"