Merge pull request #1166 from usha-mandya/app-templates-1006

Fix liquid syntax error
This commit is contained in:
Usha Mandya 2019-06-12 14:14:35 +01:00 committed by GitHub
commit 7ea74b516e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 2 deletions

View File

@ -1,7 +1,7 @@
---
title: Working with Docker Template
description: Working with Docker Application Template
keywords: Docker, application template, Application Designer
keywords: Docker, application template, Application Designer,
---
## Overview
@ -98,6 +98,7 @@ COPY assets /assets
`my-service/assets/docker-compose.yaml`
{% raw %}
```
version: "3.6"
services:
@ -106,6 +107,7 @@ services:
ports:
- {{ .Parameters.externalPort }}:3000
```
{% endraw %}
`my-service/assets/Dockerfile`
@ -250,7 +252,7 @@ When this is complete, use the newly added node option in `my-service/assets/Doc
with
`FROM node:{{ .Parameters.node }}`
{% raw %}`FROM node:{{ .Parameters.node }}`{% endraw %}
Now, build and push the image to your repository.