-
Notifications
You must be signed in to change notification settings - Fork 13
/
docker-compose.yml
109 lines (91 loc) · 1.85 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
version: '2'
services:
postgres:
restart: on-failure:10
image: postgres
expose:
- "5432"
environment:
- POSTGRES_DB=intriguedb
- POSTGRES_HOST_AUTH_METHOD=trust
volumes:
- "db-data:/var/lib/postgresql/data"
redis:
image: redis
expose:
- "6379"
###########
# intrigue-web:
# build: https://github.com/intrigueio/intrigue-core.git
# ports:
# - "83:7777"
# links:
# - redis
# - postgres
# environment:
# - INTRIGUE_ENV=docker
# - REDIS_URI=redis://redis:6379/
#TO TEST
# intrigue:
# build:
# context: ./intrigue
# ports:
# - "83:7777"
#relies on dokuwiki
# ivre:
# fail
dashboard:
build:
context: ./pereval-dash
ports:
- "86:9090"
# checked
cyberchef:
image: mpepping/cyberchef
ports:
- "82:8000"
# checked
openwebspider:
image: pantyusha/openwebspider
ports:
- "81:9999"
# checked
spiderfoot:
build: https://github.com/smicallef/spiderfoot.git#v2.12.0-final
ports:
- "85:8080"
# http://localhost:84/wisemapping/c/login
wisemapping:
image: wisemapping/webapp
ports:
- "84:8080" # might go overdriven by spiderfoot?
# checked, works after a while
etherpad:
build:
context: ./etherpad-lite
ports:
- "89:9001"
# checked
#TODO: check where docs lie; study redis
ethercalc:
image: audreyt/ethercalc
ports:
- "90:8000" #doesnt override anything!
links:
- redis
# checked
shaarli:
image: shaarli/shaarli
ports:
- "91:80"
hackpad:
build: https://github.com/dropbox/hackpad.git#da0b3dbc3525cd3094c52975d11817ab30087ac9
ports:
- "92:9000"
# /app/docker-runner.sh: line 16: mysqladmin: command not found
# paperwork:
# image: conoria/paperwork
# ports:
# - "93:80"
volumes:
db-data: