mirror of https://github.com/MISP/misp-docker
Modules use Redis, and set some depends on
parent
b48d3a0332
commit
4ec6a302c8
|
@ -16,6 +16,9 @@ services:
|
||||||
misp:
|
misp:
|
||||||
image: misp
|
image: misp
|
||||||
build: server/.
|
build: server/.
|
||||||
|
depends_on:
|
||||||
|
- redis
|
||||||
|
- db
|
||||||
ports:
|
ports:
|
||||||
- "80:80"
|
- "80:80"
|
||||||
- "443:443"
|
- "443:443"
|
||||||
|
@ -33,3 +36,9 @@ services:
|
||||||
misp-modules:
|
misp-modules:
|
||||||
image: misp-modules
|
image: misp-modules
|
||||||
build: modules/.
|
build: modules/.
|
||||||
|
environment:
|
||||||
|
- "REDIS_BACKEND=redis"
|
||||||
|
depends_on:
|
||||||
|
- redis
|
||||||
|
- db
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue