17 lines
363 B
Plaintext
17 lines
363 B
Plaintext
version: '3.4'
|
|
|
|
services:
|
|
{{ serviceName }}:
|
|
image: {{ serviceName }}
|
|
build:
|
|
context: {{ workspaceRelative . dockerBuildContext }}
|
|
dockerfile: {{ contextRelative . dockerfileDirectory }}/Dockerfile
|
|
environment:
|
|
NODE_ENV: production
|
|
{{#if ports}}
|
|
ports:
|
|
{{#each ports}}
|
|
- {{ . }}:{{ . }}
|
|
{{/each}}
|
|
{{/if}}
|