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 }}}