fix: Add default webhook domain for n8n
This commit is contained in:
parent
9790d2b613
commit
fcf206a081
1 changed files with 3 additions and 1 deletions
|
|
@ -24,7 +24,9 @@ export const post: RequestHandler = async (event) => {
|
|||
const config = {
|
||||
image: `${image}:${version}`,
|
||||
volume: `${id}-n8n:/root/.n8n`,
|
||||
environmentVariables: {}
|
||||
environmentVariables: {
|
||||
WEBHOOK_URL: `${service.fqdn}`
|
||||
}
|
||||
};
|
||||
if (serviceSecret.length > 0) {
|
||||
serviceSecret.forEach((secret) => {
|
||||
|
|
|
|||
Loading…
Reference in a new issue