Blame view
docker-compose-jfrog.yml
3.75 KB
1f3a6f168 Add docker-compos... |
1 2 3 4 5 6 7 8 |
version: '3' services: #CEPTD suricata: image: registry.curex-project.eu:443/curex-local/kea_suricata:1.0.1 container_name: kea_suricata |
ba48fa041 Set restart to un... |
9 |
restart: unless-stopped |
1f3a6f168 Add docker-compos... |
10 11 12 13 14 15 16 |
network_mode: "host" cap_add: - NET_ADMIN - SYS_NICE - NET_RAW command: ONLINE volumes: |
91032c429 Mount Jenkins dir... |
17 |
- /var/jenkins_home:/var/jenkins_home |
1f3a6f168 Add docker-compos... |
18 19 20 21 22 23 |
- ./data/suricata/log:/var/log/suricata - ./data/pcap:/var/pcap elasticsearch: image: registry.curex-project.eu:443/curex-local/kea_elasticsearch:7.6.2 container_name: kea_elasticsearch |
ba48fa041 Set restart to un... |
24 |
restart: unless-stopped |
1f3a6f168 Add docker-compos... |
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
environment: - cluster.name=keacluster - node.name=keacluster-node-01 - discovery.type=single-node - bootstrap.memory_lock=true - "ES_JAVA_OPTS=-Xms1024m -Xmx1024m" - xpack.ml.enabled=false - xpack.security.enabled=false - xpack.ilm.enabled=false - path.logs=/data/elk/log - path.data=/data/elk/data - http.host=0.0.0.0 - http.cors.enabled=true - http.cors.allow-origin="*" - indices.query.bool.max_clause_count=2000 ulimits: memlock: soft: -1 hard: -1 |
1f3a6f168 Add docker-compos... |
44 |
volumes: |
91032c429 Mount Jenkins dir... |
45 |
- /var/jenkins_home:/var/jenkins_home |
1f3a6f168 Add docker-compos... |
46 47 48 49 50 |
- ./data:/data #/usr/share/elasticsearch/data logstash: image: registry.curex-project.eu:443/curex-local/kea_logstash:1.0.1 container_name: kea_logstash |
ba48fa041 Set restart to un... |
51 |
restart: unless-stopped |
1f3a6f168 Add docker-compos... |
52 |
volumes: |
91032c429 Mount Jenkins dir... |
53 |
- /var/jenkins_home:/var/jenkins_home |
1f3a6f168 Add docker-compos... |
54 55 56 57 58 |
- ./data:/data kibana: image: registry.curex-project.eu:443/curex-local/kea_kibana:7.6.2 container_name: kea_kibana |
ba48fa041 Set restart to un... |
59 |
restart: unless-stopped |
4b1e82575 Run kibana on por... |
60 61 |
ports: - "5611:5601" |
1f3a6f168 Add docker-compos... |
62 63 64 65 66 67 68 69 70 71 |
#Controller webserver: image: registry.curex-project.eu:443/curex-local/kea_webserver:1.19 container_name: kea_webserver restart: unless-stopped tty: true ports: - "80:80" - "443:443" volumes: |
91032c429 Mount Jenkins dir... |
72 |
- /var/jenkins_home:/var/jenkins_home |
1f3a6f168 Add docker-compos... |
73 74 75 |
- ./api:/var/www - ./api/nginx/conf.d/:/etc/nginx/conf.d/ |
1f3a6f168 Add docker-compos... |
76 77 78 79 |
api: image: registry.curex-project.eu:443/curex-local/kea_api:1.0.1 container_name: kea_api restart: unless-stopped |
c0ea25785 Revert "Set tty t... |
80 |
tty: true |
1f3a6f168 Add docker-compos... |
81 82 |
working_dir: /var/www volumes: |
91032c429 Mount Jenkins dir... |
83 |
- /var/jenkins_home:/var/jenkins_home |
1f3a6f168 Add docker-compos... |
84 85 86 87 88 89 90 91 92 |
- ./api:/var/www - ./api/php/local.ini:/usr/local/etc/php/conf.d/local.ini #OD od: image: registry.curex-project.eu:443/curex-local/kea_od:1.0.1 container_name: kea_od depends_on: - timescaledb |
ba48fa041 Set restart to un... |
93 |
restart: unless-stopped |
1f3a6f168 Add docker-compos... |
94 95 96 97 98 99 100 101 102 103 |
ports: - "9091:9091" #MLTD mltd: image: registry.curex-project.eu:443/curex-local/kea_mltd:1.0.1 container_name: kea_mltd depends_on: - timescaledb - mosquitto |
ba48fa041 Set restart to un... |
104 |
restart: unless-stopped |
1f3a6f168 Add docker-compos... |
105 106 107 108 109 110 111 112 113 114 115 |
ports: - "5000:5000" #MQTT mosquitto: image: registry.curex-project.eu:443/curex-local/kea_mqtt:1.6.9 container_name: kea_mqtt ports: - "1883:1883" - "9001:9001" volumes: |
91032c429 Mount Jenkins dir... |
116 |
- /var/jenkins_home:/var/jenkins_home |
1f3a6f168 Add docker-compos... |
117 118 119 120 121 122 123 124 |
- ./data/mosquitto/data:/mosquitto/data - ./data/mosquitto/log:/mosquitto/log #Persistence timescaledb: image: registry.curex-project.eu:443/curex-local/kea_timescaledb:2.1.0-pg11-oss container_name: kea_timescaledb volumes: |
91032c429 Mount Jenkins dir... |
125 |
- /var/jenkins_home:/var/jenkins_home |
1f3a6f168 Add docker-compos... |
126 127 128 129 130 131 132 133 134 135 |
- ./data/timescaledb:/var/lib/postgresql/data environment: - POSTGRES_USER=postgres - POSTGRES_PASSWORD=postgres - POSTGRES_DB=kea ports: - "5432:5432" #Visualization grafana: |
b849ecaad Build our own gra... |
136 |
image: registry.curex-project.eu:443/curex-local/kea_grafana:1.0.0 |
1f3a6f168 Add docker-compos... |
137 138 139 140 141 142 143 144 |
container_name: kea_grafana ports: - "3001:3000" environment: - GF_SECURITY_ALLOW_EMBEDDING=true - GF_SECURITY_COOKIE_SAMESITE=none - GF_AUTH_ANONYMOUS_ENABLED=true - GF_AUTH_ANONYMOUS_ORG_ROLE=Admin |
b849ecaad Build our own gra... |
145 |