Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
#dockercompose

version: '3.5'
services:

  #webhookservice
  ze-jira-webhook:
    image: zephyrdevbotsmartbear/zedevserviceszejirawebhook:ze-jira-webhook
    container_name: ze-jira-webhook
    ports:
      - "8081:8081"
      - "8000:8000"
    environment:
      - server_port=8081
    volumes:
      - ./zeJiraWebhook.properties:/usr/src/app/zeJiraWebhook.properties
    networks:
      - webhook_service

networks:
  webhook_service:
    name: zephyr
    external: true

...