diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 0000000..4175da6 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,26 @@ +# Use the latest 2.1 version of CircleCI pipeline process engine. +# See: https://circleci.com/docs/configuration-reference +version: 2.1 + +# Define a job to be invoked later in a workflow. +# See: https://circleci.com/docs/configuration-reference/#jobs +jobs: + say-hello: + # Specify the execution environment. You can specify an image from Docker Hub or use one of our convenience images from CircleCI's Developer Hub. + # See: https://circleci.com/docs/configuration-reference/#executor-job + docker: + - image: cimg/base:stable + # Add steps to the job + # See: https://circleci.com/docs/configuration-reference/#steps + steps: + - checkout + - run: + name: "Say hello" + command: "echo Hello, World!" + +# Orchestrate jobs using workflows +# See: https://circleci.com/docs/configuration-reference/#workflows +workflows: + say-hello-workflow: + jobs: + - say-hello diff --git a/compose-local.yaml b/compose-local.yaml index d23db67..c644102 100644 --- a/compose-local.yaml +++ b/compose-local.yaml @@ -20,6 +20,8 @@ services: - elasticsearch filebeat: image: docker.elastic.co/beats/filebeat:7.12.1 + # Uncomment the command: line below for a Windows-based filebeat Docker deployment: + command: filebeat -e -strict.perms=false volumes: - ./filebeat/filebeat.docker.yml:/usr/share/filebeat/filebeat.yml:ro # Configuration file - /var/lib/docker/containers:/var/lib/docker/containers:ro # Docker logs @@ -56,7 +58,7 @@ services: ports: - 8080:8080 depends_on: - - inventory + - inventory-service - jms restart: on-failure environment: @@ -92,7 +94,7 @@ services: ports: - 9090:9090 depends_on: - - inventory + - inventory-service - beer-service - order-service - inventory-failover