Sharing a simple example here: ```python template = Template(""" version: '3' services: web: image: {{ image }} ports: - "{{ port }}:80" """) print(template.render(image="nginx:latest", port=8080)) ```
Sharing a simple example here: