Skip to content

Commit

Permalink
Brings example into standard use (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
bomoko authored Oct 1, 2022
1 parent dadfa45 commit f9a0de0
Showing 1 changed file with 9 additions and 20 deletions.
29 changes: 9 additions & 20 deletions .lagoon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,42 +11,31 @@ lagoon-sync:
verbose: true
mariadb:
config:
hostname: "$MARIADB_HOST"
username: "$MARIADB_USERNAME"
password: "$MARIADB_PASSWORD"
port: "$MARIADB_PORT"
database: "$MARIADB_DATABASE"
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"
local:
config:
hostname: "mariadb"
username: "drupal"
password: "drupal"
port: "3306"
database: "drupal"
postgres:
config:
hostname: "$POSTGRES_HOST"
username: "$POSTGRES_USERNAME"
password: "$POSTGRES_PASSWORD"
hostname: "${POSTGRES_HOST:-postgres}"
username: "${POSTGRES_USERNAME:-drupal}"
password: "${POSTGRES_PASSWORD:-drupal}"
port: "5432"
database: "$POSTGRES_DATABASE"
database: "${POSTGRES_DATABASE:-drupal}"
exclude-table:
- "table_to_ignore"
exclude-table-data:
- "cache_data"
- "cache_menu"
local:
config:
hostname: "postgres"
username: "drupal"
password: "drupal"
port: "3306"
database: "drupal"
mongodb:
config:
hostname: "$MONGODB_HOST"
Expand Down

0 comments on commit f9a0de0

Please sign in to comment.