├── .all-contributorsrc ├── .gitignore ├── LICENSE ├── README.md ├── assets └── header.png ├── code_of_conduct.md ├── docker ├── cortex3-docker-neurons │ ├── .env │ ├── .gitignore │ ├── README.md │ └── docker-compose.yml ├── cortex3-local-neurons │ ├── .gitignore │ └── docker-compose.yml ├── thehive3 │ ├── .env │ ├── .gitignore │ ├── docker-compose.yml │ └── etc │ │ └── thehive │ │ └── application.conf ├── thehive34-cortex3-es6-nginx-https │ ├── .env │ ├── README.md │ ├── docker-compose.yml │ └── vol │ │ ├── nginx │ │ ├── certs.conf │ │ ├── cortex.conf │ │ └── thehive.conf │ │ └── ssl │ │ └── README.md ├── thehive34-cortex3-es6-traefik-route53 │ ├── .env │ ├── README.md │ └── docker-compose.yml ├── thehive34-es6-nginx-https │ ├── README.md │ ├── docker-compose.yml │ └── vol │ │ ├── nginx │ │ ├── certs.conf │ │ └── thehive.conf │ │ └── ssl │ │ └── README.md ├── thehive35-cortex3-es7-nginx-https │ ├── .env │ ├── README.md │ ├── docker-compose.yml │ └── vol │ │ ├── nginx │ │ ├── certs.conf │ │ ├── cortex.conf │ │ └── thehive.conf │ │ └── ssl │ │ └── README.md ├── thehive35-cortex3-es7-traefik-route53 │ ├── .env │ ├── README.md │ └── docker-compose.yml ├── thehive35-cortex3-es7 │ ├── .env │ ├── README.md │ └── docker-compose.yml ├── thehive35-es7-nginx-https │ ├── README.md │ ├── docker-compose.yml │ └── vol │ │ ├── nginx │ │ ├── certs.conf │ │ └── thehive.conf │ │ └── ssl │ │ └── README.md ├── thehive4-berkleydb-cortex31 │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── docker-compose.yml │ └── vol │ │ ├── cortex │ │ └── application.conf │ │ └── thehive │ │ └── application.conf ├── thehive4-berkleydb │ ├── .gitignore │ ├── docker-compose.yml │ └── vol │ │ └── thehive │ │ └── application.conf ├── thehive4-cassandra │ ├── .gitignore │ ├── docker-compose.yml │ └── vol │ │ └── thehive │ │ └── application.conf ├── thehive4-cassandra3-traefik-route53 │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── docker-compose.yml │ └── vol │ │ └── thehive │ │ └── application.conf ├── thehive4-cortex3-misp-shuffle │ ├── .gitignore │ ├── README.md │ ├── cortex │ │ └── application.conf │ ├── docker-compose.yml │ └── thehive │ │ └── application.conf ├── thehive4-cortex31-n8n │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── docker-compose.yml │ └── vol │ │ ├── cortex │ │ └── application.conf │ │ └── thehive │ │ └── application.conf ├── thehive4-cortex31-nginx-https │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── docker-compose.yml │ └── vol │ │ ├── nginx │ │ ├── certs.conf │ │ ├── cortex.conf │ │ └── thehive.conf │ │ ├── ssl │ │ └── README.md │ │ └── thehive │ │ └── application.conf ├── thehive4-cortex31-nodered │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── docker-compose.yml │ └── vol │ │ ├── cortex │ │ └── application.conf │ │ └── thehive │ │ └── application.conf ├── thehive4-cortex31-shuffle │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── docker-compose.yml │ └── vol │ │ ├── cortex │ │ └── application.conf │ │ └── thehive │ │ └── application.conf ├── thehive4-cortex31-traefik-https │ ├── .gitignore │ ├── README.md │ ├── docker-compose.yml │ └── vol │ │ ├── cassandra │ │ └── data │ │ │ └── .gitkeep │ │ ├── cortex │ │ └── application.conf │ │ ├── elasticsearch │ │ ├── data │ │ │ └── .gitkeep │ │ ├── index │ │ │ └── .gitkeep │ │ └── logs │ │ │ └── .gitkeep │ │ ├── thehive │ │ ├── application.conf │ │ ├── data │ │ │ └── .gitkeep │ │ └── index │ │ │ └── .gitkeep │ │ └── traefik │ │ ├── certs │ │ └── .gitkeep │ │ └── conf │ │ └── tls-config.yml ├── thehive4-minimal-nginx-https │ ├── docker-compose.yml │ └── vol │ │ ├── nginx │ │ ├── certs.conf │ │ └── thehive.conf │ │ ├── ssl │ │ └── README.md │ │ └── thehive │ │ └── application.conf ├── thehive4-minimal │ ├── .gitignore │ ├── docker-compose.yml │ └── vol │ │ └── thehive │ │ └── application.conf ├── thehive4-scylladb │ ├── .gitignore │ ├── docker-compose.yml │ └── vol │ │ └── thehive │ │ └── application.conf └── thehive5-minimal │ ├── .gitignore │ ├── README.md │ ├── docker-compose.yml │ └── vol │ └── thehive │ ├── data │ └── .gitkeep │ ├── db │ └── .gitkeep │ ├── etc │ ├── application.conf │ └── logback.xml │ ├── index │ └── .gitkeep │ └── logs │ └── .gitkeep └── docs ├── cassandra-config.md ├── cortex-config.md ├── elasticsearch-config.md ├── nginx-config.md └── thehive-config.md /.all-contributorsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/.all-contributorsrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package.json 3 | yarn.lock 4 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/README.md -------------------------------------------------------------------------------- /assets/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/assets/header.png -------------------------------------------------------------------------------- /code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/code_of_conduct.md -------------------------------------------------------------------------------- /docker/cortex3-docker-neurons/.env: -------------------------------------------------------------------------------- 1 | job_directory=/tmp/cortex-jobs -------------------------------------------------------------------------------- /docker/cortex3-docker-neurons/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/cortex3-docker-neurons/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/cortex3-docker-neurons/README.md -------------------------------------------------------------------------------- /docker/cortex3-docker-neurons/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/cortex3-docker-neurons/docker-compose.yml -------------------------------------------------------------------------------- /docker/cortex3-local-neurons/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/cortex3-local-neurons/docker-compose.yml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/thehive3/.env: -------------------------------------------------------------------------------- 1 | COMPOSE_PROJECT_NAME=thehive3 -------------------------------------------------------------------------------- /docker/thehive3/.gitignore: -------------------------------------------------------------------------------- 1 | ./opt/data -------------------------------------------------------------------------------- /docker/thehive3/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive3/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive3/etc/thehive/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive3/etc/thehive/application.conf -------------------------------------------------------------------------------- /docker/thehive34-cortex3-es6-nginx-https/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive34-cortex3-es6-nginx-https/.env -------------------------------------------------------------------------------- /docker/thehive34-cortex3-es6-nginx-https/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive34-cortex3-es6-nginx-https/README.md -------------------------------------------------------------------------------- /docker/thehive34-cortex3-es6-nginx-https/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive34-cortex3-es6-nginx-https/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive34-cortex3-es6-nginx-https/vol/nginx/certs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive34-cortex3-es6-nginx-https/vol/nginx/certs.conf -------------------------------------------------------------------------------- /docker/thehive34-cortex3-es6-nginx-https/vol/nginx/cortex.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive34-cortex3-es6-nginx-https/vol/nginx/cortex.conf -------------------------------------------------------------------------------- /docker/thehive34-cortex3-es6-nginx-https/vol/nginx/thehive.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive34-cortex3-es6-nginx-https/vol/nginx/thehive.conf -------------------------------------------------------------------------------- /docker/thehive34-cortex3-es6-nginx-https/vol/ssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive34-cortex3-es6-nginx-https/vol/ssl/README.md -------------------------------------------------------------------------------- /docker/thehive34-cortex3-es6-traefik-route53/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive34-cortex3-es6-traefik-route53/.env -------------------------------------------------------------------------------- /docker/thehive34-cortex3-es6-traefik-route53/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive34-cortex3-es6-traefik-route53/README.md -------------------------------------------------------------------------------- /docker/thehive34-cortex3-es6-traefik-route53/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive34-cortex3-es6-traefik-route53/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive34-es6-nginx-https/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive34-es6-nginx-https/README.md -------------------------------------------------------------------------------- /docker/thehive34-es6-nginx-https/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive34-es6-nginx-https/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive34-es6-nginx-https/vol/nginx/certs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive34-es6-nginx-https/vol/nginx/certs.conf -------------------------------------------------------------------------------- /docker/thehive34-es6-nginx-https/vol/nginx/thehive.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive34-es6-nginx-https/vol/nginx/thehive.conf -------------------------------------------------------------------------------- /docker/thehive34-es6-nginx-https/vol/ssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive34-es6-nginx-https/vol/ssl/README.md -------------------------------------------------------------------------------- /docker/thehive35-cortex3-es7-nginx-https/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive35-cortex3-es7-nginx-https/.env -------------------------------------------------------------------------------- /docker/thehive35-cortex3-es7-nginx-https/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive35-cortex3-es7-nginx-https/README.md -------------------------------------------------------------------------------- /docker/thehive35-cortex3-es7-nginx-https/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive35-cortex3-es7-nginx-https/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive35-cortex3-es7-nginx-https/vol/nginx/certs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive35-cortex3-es7-nginx-https/vol/nginx/certs.conf -------------------------------------------------------------------------------- /docker/thehive35-cortex3-es7-nginx-https/vol/nginx/cortex.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive35-cortex3-es7-nginx-https/vol/nginx/cortex.conf -------------------------------------------------------------------------------- /docker/thehive35-cortex3-es7-nginx-https/vol/nginx/thehive.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive35-cortex3-es7-nginx-https/vol/nginx/thehive.conf -------------------------------------------------------------------------------- /docker/thehive35-cortex3-es7-nginx-https/vol/ssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive35-cortex3-es7-nginx-https/vol/ssl/README.md -------------------------------------------------------------------------------- /docker/thehive35-cortex3-es7-traefik-route53/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive35-cortex3-es7-traefik-route53/.env -------------------------------------------------------------------------------- /docker/thehive35-cortex3-es7-traefik-route53/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive35-cortex3-es7-traefik-route53/README.md -------------------------------------------------------------------------------- /docker/thehive35-cortex3-es7-traefik-route53/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive35-cortex3-es7-traefik-route53/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive35-cortex3-es7/.env: -------------------------------------------------------------------------------- 1 | job_directory=/tmp/cortex-jobs -------------------------------------------------------------------------------- /docker/thehive35-cortex3-es7/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive35-cortex3-es7/README.md -------------------------------------------------------------------------------- /docker/thehive35-cortex3-es7/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive35-cortex3-es7/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive35-es7-nginx-https/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive35-es7-nginx-https/README.md -------------------------------------------------------------------------------- /docker/thehive35-es7-nginx-https/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive35-es7-nginx-https/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive35-es7-nginx-https/vol/nginx/certs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive35-es7-nginx-https/vol/nginx/certs.conf -------------------------------------------------------------------------------- /docker/thehive35-es7-nginx-https/vol/nginx/thehive.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive35-es7-nginx-https/vol/nginx/thehive.conf -------------------------------------------------------------------------------- /docker/thehive35-es7-nginx-https/vol/ssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive35-es7-nginx-https/vol/ssl/README.md -------------------------------------------------------------------------------- /docker/thehive4-berkleydb-cortex31/.env: -------------------------------------------------------------------------------- 1 | JOB_DIRECTORY=/opt/cortex/jobs -------------------------------------------------------------------------------- /docker/thehive4-berkleydb-cortex31/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-berkleydb-cortex31/.gitignore -------------------------------------------------------------------------------- /docker/thehive4-berkleydb-cortex31/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-berkleydb-cortex31/README.md -------------------------------------------------------------------------------- /docker/thehive4-berkleydb-cortex31/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-berkleydb-cortex31/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive4-berkleydb-cortex31/vol/cortex/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-berkleydb-cortex31/vol/cortex/application.conf -------------------------------------------------------------------------------- /docker/thehive4-berkleydb-cortex31/vol/thehive/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-berkleydb-cortex31/vol/thehive/application.conf -------------------------------------------------------------------------------- /docker/thehive4-berkleydb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-berkleydb/.gitignore -------------------------------------------------------------------------------- /docker/thehive4-berkleydb/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-berkleydb/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive4-berkleydb/vol/thehive/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-berkleydb/vol/thehive/application.conf -------------------------------------------------------------------------------- /docker/thehive4-cassandra/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cassandra/.gitignore -------------------------------------------------------------------------------- /docker/thehive4-cassandra/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cassandra/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive4-cassandra/vol/thehive/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cassandra/vol/thehive/application.conf -------------------------------------------------------------------------------- /docker/thehive4-cassandra3-traefik-route53/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cassandra3-traefik-route53/.env -------------------------------------------------------------------------------- /docker/thehive4-cassandra3-traefik-route53/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cassandra3-traefik-route53/.gitignore -------------------------------------------------------------------------------- /docker/thehive4-cassandra3-traefik-route53/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cassandra3-traefik-route53/README.md -------------------------------------------------------------------------------- /docker/thehive4-cassandra3-traefik-route53/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cassandra3-traefik-route53/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive4-cassandra3-traefik-route53/vol/thehive/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cassandra3-traefik-route53/vol/thehive/application.conf -------------------------------------------------------------------------------- /docker/thehive4-cortex3-misp-shuffle/.gitignore: -------------------------------------------------------------------------------- 1 | vol -------------------------------------------------------------------------------- /docker/thehive4-cortex3-misp-shuffle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex3-misp-shuffle/README.md -------------------------------------------------------------------------------- /docker/thehive4-cortex3-misp-shuffle/cortex/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex3-misp-shuffle/cortex/application.conf -------------------------------------------------------------------------------- /docker/thehive4-cortex3-misp-shuffle/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex3-misp-shuffle/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive4-cortex3-misp-shuffle/thehive/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex3-misp-shuffle/thehive/application.conf -------------------------------------------------------------------------------- /docker/thehive4-cortex31-n8n/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-n8n/.env -------------------------------------------------------------------------------- /docker/thehive4-cortex31-n8n/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-n8n/.gitignore -------------------------------------------------------------------------------- /docker/thehive4-cortex31-n8n/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-n8n/README.md -------------------------------------------------------------------------------- /docker/thehive4-cortex31-n8n/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-n8n/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive4-cortex31-n8n/vol/cortex/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-n8n/vol/cortex/application.conf -------------------------------------------------------------------------------- /docker/thehive4-cortex31-n8n/vol/thehive/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-n8n/vol/thehive/application.conf -------------------------------------------------------------------------------- /docker/thehive4-cortex31-nginx-https/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-nginx-https/.env -------------------------------------------------------------------------------- /docker/thehive4-cortex31-nginx-https/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-nginx-https/.gitignore -------------------------------------------------------------------------------- /docker/thehive4-cortex31-nginx-https/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-nginx-https/README.md -------------------------------------------------------------------------------- /docker/thehive4-cortex31-nginx-https/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-nginx-https/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive4-cortex31-nginx-https/vol/nginx/certs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-nginx-https/vol/nginx/certs.conf -------------------------------------------------------------------------------- /docker/thehive4-cortex31-nginx-https/vol/nginx/cortex.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-nginx-https/vol/nginx/cortex.conf -------------------------------------------------------------------------------- /docker/thehive4-cortex31-nginx-https/vol/nginx/thehive.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-nginx-https/vol/nginx/thehive.conf -------------------------------------------------------------------------------- /docker/thehive4-cortex31-nginx-https/vol/ssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-nginx-https/vol/ssl/README.md -------------------------------------------------------------------------------- /docker/thehive4-cortex31-nginx-https/vol/thehive/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-nginx-https/vol/thehive/application.conf -------------------------------------------------------------------------------- /docker/thehive4-cortex31-nodered/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-nodered/.env -------------------------------------------------------------------------------- /docker/thehive4-cortex31-nodered/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-nodered/.gitignore -------------------------------------------------------------------------------- /docker/thehive4-cortex31-nodered/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-nodered/README.md -------------------------------------------------------------------------------- /docker/thehive4-cortex31-nodered/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-nodered/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive4-cortex31-nodered/vol/cortex/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-nodered/vol/cortex/application.conf -------------------------------------------------------------------------------- /docker/thehive4-cortex31-nodered/vol/thehive/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-nodered/vol/thehive/application.conf -------------------------------------------------------------------------------- /docker/thehive4-cortex31-shuffle/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-shuffle/.env -------------------------------------------------------------------------------- /docker/thehive4-cortex31-shuffle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-shuffle/.gitignore -------------------------------------------------------------------------------- /docker/thehive4-cortex31-shuffle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-shuffle/README.md -------------------------------------------------------------------------------- /docker/thehive4-cortex31-shuffle/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-shuffle/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive4-cortex31-shuffle/vol/cortex/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-shuffle/vol/cortex/application.conf -------------------------------------------------------------------------------- /docker/thehive4-cortex31-shuffle/vol/thehive/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-shuffle/vol/thehive/application.conf -------------------------------------------------------------------------------- /docker/thehive4-cortex31-traefik-https/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-traefik-https/.gitignore -------------------------------------------------------------------------------- /docker/thehive4-cortex31-traefik-https/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-traefik-https/README.md -------------------------------------------------------------------------------- /docker/thehive4-cortex31-traefik-https/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-traefik-https/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive4-cortex31-traefik-https/vol/cassandra/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/thehive4-cortex31-traefik-https/vol/cortex/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-traefik-https/vol/cortex/application.conf -------------------------------------------------------------------------------- /docker/thehive4-cortex31-traefik-https/vol/elasticsearch/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/thehive4-cortex31-traefik-https/vol/elasticsearch/index/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/thehive4-cortex31-traefik-https/vol/elasticsearch/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/thehive4-cortex31-traefik-https/vol/thehive/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-traefik-https/vol/thehive/application.conf -------------------------------------------------------------------------------- /docker/thehive4-cortex31-traefik-https/vol/thehive/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/thehive4-cortex31-traefik-https/vol/thehive/index/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/thehive4-cortex31-traefik-https/vol/traefik/certs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/thehive4-cortex31-traefik-https/vol/traefik/conf/tls-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-cortex31-traefik-https/vol/traefik/conf/tls-config.yml -------------------------------------------------------------------------------- /docker/thehive4-minimal-nginx-https/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-minimal-nginx-https/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive4-minimal-nginx-https/vol/nginx/certs.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-minimal-nginx-https/vol/nginx/certs.conf -------------------------------------------------------------------------------- /docker/thehive4-minimal-nginx-https/vol/nginx/thehive.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-minimal-nginx-https/vol/nginx/thehive.conf -------------------------------------------------------------------------------- /docker/thehive4-minimal-nginx-https/vol/ssl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-minimal-nginx-https/vol/ssl/README.md -------------------------------------------------------------------------------- /docker/thehive4-minimal-nginx-https/vol/thehive/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-minimal-nginx-https/vol/thehive/application.conf -------------------------------------------------------------------------------- /docker/thehive4-minimal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-minimal/.gitignore -------------------------------------------------------------------------------- /docker/thehive4-minimal/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-minimal/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive4-minimal/vol/thehive/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-minimal/vol/thehive/application.conf -------------------------------------------------------------------------------- /docker/thehive4-scylladb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-scylladb/.gitignore -------------------------------------------------------------------------------- /docker/thehive4-scylladb/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-scylladb/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive4-scylladb/vol/thehive/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive4-scylladb/vol/thehive/application.conf -------------------------------------------------------------------------------- /docker/thehive5-minimal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive5-minimal/.gitignore -------------------------------------------------------------------------------- /docker/thehive5-minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive5-minimal/README.md -------------------------------------------------------------------------------- /docker/thehive5-minimal/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive5-minimal/docker-compose.yml -------------------------------------------------------------------------------- /docker/thehive5-minimal/vol/thehive/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/thehive5-minimal/vol/thehive/db/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/thehive5-minimal/vol/thehive/etc/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive5-minimal/vol/thehive/etc/application.conf -------------------------------------------------------------------------------- /docker/thehive5-minimal/vol/thehive/etc/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docker/thehive5-minimal/vol/thehive/etc/logback.xml -------------------------------------------------------------------------------- /docker/thehive5-minimal/vol/thehive/index/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker/thehive5-minimal/vol/thehive/logs/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/cassandra-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docs/cassandra-config.md -------------------------------------------------------------------------------- /docs/cortex-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docs/cortex-config.md -------------------------------------------------------------------------------- /docs/elasticsearch-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docs/elasticsearch-config.md -------------------------------------------------------------------------------- /docs/nginx-config.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/thehive-config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheHive-Project/Docker-Templates/HEAD/docs/thehive-config.md --------------------------------------------------------------------------------