version: '2'
services:
  web:
    build:
      context: .
      dockerfile: Dockerfile
    image: "{{image}}"
    container_name: "{{containerName}}"
    ports:
      - "8080:8080"
      - "2048:1024"
      - "2049:1025" {{#ifCond images.length '>' 0}}
    links: {{#each images}}
      - {{this}}{{/each}}{{/ifCond}}
    environment: {{#each envs as |value key|}}
      {{key}}: {{value}}{{/each}} {{#each images}}
  {{this}}:
    image: {{this}}
  {{/each}}
