server:
  build: ./
  container_name: "service-apache"
  mem_limit: 500m
  memswap_limit: 500m
  cpu_shares: 2
  restart: "on-failure:2"
  ports:
    - "9201:80"
    - "9202:443"
  environment:
    CONTAINER_TYPE: "service"
    CONTAINER_SERVICE: "apache"
    CONTAINER_INSTANCE: "service-apache"
    SERVER_NAME: "localhost"
  volumes:
    - "/tmp/container/logs/apache:/logs"
    - "/tmp/container/apache:/data"