version: '2'
services:
    nginx:
        container_name: "${BRANCH_NAME}-nginx"
        image: "nginx:${TAG}"
        privileged: true
        build:
            context: ./services/nginx
        ports:
            - "80:80"
        mem_limit: 200m
        links: []