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