docs: fix lint errors

This commit is contained in:
Revant Nandgaonkar 2022-12-28 21:19:04 +05:30
parent 081ce7eedc
commit 4e96a16ee2
2 changed files with 63 additions and 62 deletions

View file

@ -14,7 +14,7 @@ Example change:
```yaml ```yaml
# ... removed for brevity # ... removed for brevity
frontend: frontend:
image: frappe/erpnext:${ERPNEXT_VERSION:?ERPNext version not set} image: frappe/erpnext:${ERPNEXT_VERSION:?ERPNext version not set}
command: command:
- nginx-entrypoint.sh - nginx-entrypoint.sh
@ -34,7 +34,7 @@ Example change:
```yaml ```yaml
# ... removed for brevity # ... removed for brevity
websocket: websocket:
image: frappe/erpnext:${ERPNEXT_VERSION:?ERPNext version not set} image: frappe/erpnext:${ERPNEXT_VERSION:?ERPNext version not set}
command: command:
- node - node
@ -50,7 +50,7 @@ Example change:
```yaml ```yaml
# ... removed for brevity # ... removed for brevity
configurator: configurator:
image: frappe/erpnext:${ERPNEXT_VERSION:?ERPNext version not set} image: frappe/erpnext:${ERPNEXT_VERSION:?ERPNext version not set}
restart: "no" restart: "no"
entrypoint: entrypoint:
@ -84,7 +84,7 @@ Example change:
```yaml ```yaml
# ... removed for brevity # ... removed for brevity
create-site: create-site:
image: frappe/erpnext:${ERPNEXT_VERSION:?ERPNext version not set} image: frappe/erpnext:${ERPNEXT_VERSION:?ERPNext version not set}
restart: "no" restart: "no"
entrypoint: entrypoint:
@ -110,5 +110,6 @@ Example change:
done; done;
echo "sites/common_site_config.json found"; echo "sites/common_site_config.json found";
bench new-site frontend --no-mariadb-socket --admin-password=admin --db-root-password=admin --install-app payments --install-app erpnext --set-default; bench new-site frontend --no-mariadb-socket --admin-password=admin --db-root-password=admin --install-app payments --install-app erpnext --set-default;
# ... removed for brevity # ... removed for brevity
``` ```