version: '2'
services:
  web:
    build:
      context: .
      dockerfile: Dockerfile-tools
    tty: true
    image: "{{image}}"
    container_name: "{{containerName}}"
    ports:
      - "8080:8080"
      - "2048:1024"
      - "2049:1025"
    volumes:
      - .:/swift-project {{#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}}
