mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
frontend depends_on websocket to avoid error on startup (#1313)
* frontend depends_on websocket to avoid error on startup * ci: fix lint --------- Co-authored-by: Revant Nandgaonkar <revant.one@gmail.com>
This commit is contained in:
parent
c8c6f82645
commit
337a024a21
3 changed files with 10 additions and 5 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
|
@ -25,3 +25,6 @@ development/*
|
|||
*.pyc
|
||||
__pycache__
|
||||
venv
|
||||
|
||||
# NodeJS
|
||||
node_modules
|
||||
|
|
|
|||
|
|
@ -5,11 +5,11 @@
|
|||
"settings": {
|
||||
"terminal.integrated.profiles.linux": {
|
||||
"frappe bash": {
|
||||
"path": "/bin/bash"
|
||||
}
|
||||
"path": "/bin/bash",
|
||||
},
|
||||
},
|
||||
"terminal.integrated.defaultProfile.linux": "frappe bash",
|
||||
"debug.node.autoAttach": "disabled"
|
||||
"debug.node.autoAttach": "disabled",
|
||||
},
|
||||
"dockerComposeFile": "./docker-compose.yml",
|
||||
"service": "frappe",
|
||||
|
|
@ -20,6 +20,6 @@
|
|||
"ms-vscode.live-server",
|
||||
"grapecity.gc-excelviewer",
|
||||
"mtxr.sqltools",
|
||||
"visualstudioexptteam.vscodeintellicode"
|
||||
]
|
||||
"visualstudioexptteam.vscodeintellicode",
|
||||
],
|
||||
}
|
||||
|
|
|
|||
2
pwd.yml
2
pwd.yml
|
|
@ -90,6 +90,8 @@ services:
|
|||
|
||||
frontend:
|
||||
image: frappe/erpnext:v15.10.6
|
||||
depends_on:
|
||||
- websocket
|
||||
deploy:
|
||||
restart_policy:
|
||||
condition: on-failure
|
||||
|
|
|
|||
Loading…
Reference in a new issue