-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
33 lines (26 loc) · 883 Bytes
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
# Ignore folders used as docker bind by Cassandra container
/*/cassandra/data/*
/*/cassandra/logs/*
# Ignore folders used as docker bind by Cortex container
/*/cortex/logs/*
/*/cortex/neurons/*
# Ignore folders used as docker bind by ElasticSearch container
/*/elasticsearch/data/*
/*/elasticsearch/logs/*
# Ignore folders used as docker bind by TheHive container
/*/thehive/data/*
/*/thehive/logs/*
# Ignore custom configuration files for TheHive
/*/thehive/config/secret.conf
# Ignore custom configuration files for Cortex
/*/cortex/config/secret.conf
# Keep track of .gitkeep files to guarantee folder permissions are correct
!/**/.gitkeep
# Ignore .env file (users should copy dot.env.template to .env and complete it before running docker compose commands)
/*/.env
# Ignore .DS_Store files
/**/.DS_Store
# Ignore server keys/certs
/**/server.key
/**/server.crt
/**/ca.pem