docker-compose.yml

29 lines | 581 B Blame History Raw Download
version: "3"
services:
  application:
    build: .
    container_name: shopizer
    volumes:
      - application:/application
      - /root/.m2:/root/.m2
    restart: unless-stopped
    ports:
      - 8080:8080
    logging:
      options:
        max-size: "10m"
        max-file: "10"
  elasticsearch:
    image: docker.elastic.co/elasticsearch/elasticsearch:6.5.2
    expose:
      - 9200
      - 9300
    environment:
      discovery.type: single-node
    restart: unless-stopped
    logging:
      options:
        max-size: "10m"
        max-file: "10"
volumes:
  application: