solorice/vscode/extensions/ms-azuretools.vscode-docker-1.22.0/resources/templates/node/docker-compose.debug.yml.template
2022-04-28 20:54:44 +03:00

18 lines
454 B
Plaintext

version: '3.4'
services:
{{ serviceName }}:
image: {{ serviceName }}
build:
context: {{ workspaceRelative . dockerBuildContext }}
dockerfile: {{ contextRelative . dockerfileDirectory }}/Dockerfile
environment:
NODE_ENV: development
{{#if (join ports debugPorts)}}
ports:
{{#each (join ports debugPorts)}}
- {{ . }}:{{ . }}
{{/each}}
{{/if}}
command: {{{ toQuotedArray nodeDebugCmdParts }}}