-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.lagoon.yml
61 lines (59 loc) · 1.54 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
49
50
51
52
53
54
55
56
57
58
59
60
61
# Example .lagoon.yml file with lagoon-sync config added which is used by the sync tool.
docker-compose-yaml: docker-compose.yml
project: "lagoon-sync"
lagoon-sync:
ssh:
host: "example.ssh.lagoon.amazeeio.cloud"
port: "22"
privateKey: "~/.ssh/example_id_rsa"
verbose: true
mariadb:
config:
hostname: "${MARIADB_HOST:-mariadb}"
username: "${MARIADB_USERNAME:-drupal}"
password: "${MARIADB_PASSWORD:-drupal}"
port: "${MARIADB_PORT:-3306}"
database: "${MARIADB_DATABASE:-drupal}"
ignore-table:
- "table_to_ignore"
ignore-table-data:
- "cache_data"
- "cache_menu"
postgres:
config:
hostname: "${POSTGRES_HOST:-postgres}"
username: "${POSTGRES_USERNAME:-drupal}"
password: "${POSTGRES_PASSWORD:-drupal}"
port: "5432"
database: "${POSTGRES_DATABASE:-drupal}"
exclude-table:
- "table_to_ignore"
exclude-table-data:
- "cache_data"
- "cache_menu"
local:
config:
port: "3306"
mongodb:
config:
hostname: "$MONGODB_HOST"
port: "$MONGODB_SERVICE_PORT"
database: "MONGODB_DATABASE"
local:
config:
hostname: "$MONGODB_HOST"
port: "27017"
database: "local"
files:
config:
sync-directory: "/app/web/sites/default/files"
local:
config:
sync-directory: "/app/web/sites/default/files"
drupalconfig:
config:
syncpath: "./config/sync"
local:
overrides:
config:
syncpath: "./config/sync"