forked from CERT-Polska/mquery
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (42 loc) · 779 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
42 lines (42 loc) · 779 Bytes
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
version: '3'
services:
web:
restart: always
build:
context: .
dockerfile: deploy/docker/web.Dockerfile
ports:
- "80:5000"
links:
- redis
volumes:
- "${SAMPLES_DIR}:/mnt/samples"
depends_on:
- "redis"
- "ursadb"
daemon:
restart: always
build:
context: .
dockerfile: deploy/docker/daemon.Dockerfile
links:
- redis
- ursadb
volumes:
- "${SAMPLES_DIR}:/mnt/samples"
depends_on:
- "redis"
- "ursadb"
ursadb:
restart: always
build:
context: ursadb/
dockerfile: Dockerfile
ports:
- "127.0.0.1:9281:9281"
volumes:
- "${SAMPLES_DIR}:/mnt/samples"
- "${INDEX_DIR}:/var/lib/ursadb"
redis:
restart: always
image: redis