-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathdocker-compose.yml
63 lines (59 loc) · 1.47 KB
/
docker-compose.yml
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
version: '3.3'
services:
mysql:
image: mariadb:10.9
restart: always
container_name: misp-mysql
tmpfs:
- /tmp
environment:
MYSQL_DATABASE: misp
MYSQL_USER: misp
MYSQL_PASSWORD: password
MYSQL_ROOT_PASSWORD: password
redis:
image: redis:7.0
restart: always
container_name: misp-redis
misp-modules:
image: ghcr.io/nukib/misp-modules:latest
restart: always
container_name: misp-modules
cap_drop:
- NET_RAW
- SYS_CHROOT
- MKNOD
- NET_BIND_SERVICE
- AUDIT_WRITE
- SETFCAP
misp:
image: ${MISP_IMAGE-ghcr.io/nukib/misp:latest}
restart: always
container_name: misp
depends_on:
- mysql
- redis
tmpfs:
- /tmp
cap_drop:
- NET_RAW
- SYS_CHROOT
- MKNOD
- AUDIT_WRITE
- SETFCAP
environment:
MYSQL_HOST: mysql
MYSQL_LOGIN: misp
MYSQL_PASSWORD: password # Please change for production
MYSQL_DATABASE: misp
REDIS_HOST: redis
MISP_BASEURL: http://localhost:8080
MISP_UUID: 0a674a5a-c4cb-491d-80cf-5adb48b5c1cd # Please change for production
MISP_ORG: Testing org # Please change for production
MISP_MODULE_URL: http://misp-modules
MISP_EMAIL: [email protected] # Please change for production
SECURITY_SALT: PleaseChangeForProduction # Please change for production
ZEROMQ_ENABLED: "yes"
ports:
- 127.0.0.1:8080:80
- 127.0.0.1:50000:50000