Skip to content

Commit

Permalink
Fix Node.js debug compose file (#494)
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenWeatherford authored Sep 19, 2018
1 parent e62d7af commit 020018b
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions configureWorkspace/configure_node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ function genDockerComposeDebug(serviceNameAndRelativePath: string, platform: str
return `version: '2.1'
services:
${serviceNameAndRelativePath}:
image: ${serviceNameAndRelativePath}
build: .
environment:
NODE_ENV: development
ports:
- ${port}:${port}
- 9229:9229
${cmd}`;
${serviceNameAndRelativePath}:
image: ${serviceNameAndRelativePath}
build: .
environment:
NODE_ENV: development
ports:
- ${port}:${port}
- 9229:9229
${cmd}`;
}

0 comments on commit 020018b

Please sign in to comment.