fix: volumes for services
This commit is contained in:
parent
88ed1446f4
commit
d6d3fb46cc
1 changed files with 2 additions and 2 deletions
|
|
@ -655,7 +655,7 @@ async function startLanguageToolService(request: FastifyRequest<ServiceStartStop
|
|||
image: config.languagetool.image,
|
||||
environment: config.languagetool.environmentVariables,
|
||||
...(exposePort ? { ports: [`${exposePort}:${port}`] } : {}),
|
||||
volumes: config.languagetool,
|
||||
volumes: config.languagetool.volumes,
|
||||
labels: makeLabelForServices('languagetool'),
|
||||
...defaultComposeConfiguration(network),
|
||||
}
|
||||
|
|
@ -710,7 +710,7 @@ async function startN8nService(request: FastifyRequest<ServiceStartStop>) {
|
|||
[id]: {
|
||||
container_name: id,
|
||||
image: config.n8n.image,
|
||||
volumes: config.n8n,
|
||||
volumes: config.n8n.volumes,
|
||||
environment: config.n8n.environmentVariables,
|
||||
labels: makeLabelForServices('n8n'),
|
||||
...(exposePort ? { ports: [`${exposePort}:${port}`] } : {}),
|
||||
|
|
|
|||
Loading…
Reference in a new issue