-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
docker-compose-dep.yml
72 lines (68 loc) · 1.29 KB
/
docker-compose-dep.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
version: '3.1'
services:
honeypots:
build:
context: .
dockerfile: ./honeypots-Dockerfile
restart: always
cap_add:
- NET_ADMIN
depends_on:
- postgres
networks:
- backend
- frontend
ports:
- '21:21'
- '22:22'
- '23:23'
- '25:25'
- '80:80'
- '110:110'
- '143:143'
- '389:389'
- '443:443'
- '445:445'
- '1080:1080'
- '3306:3306'
- '5900:5900'
- '6379:6379'
- '8080:8080'
- '9200:9200'
- '1433:1433'
- '5432:5432'
grafana:
build: ./grafana
container_name: grafana
command: ./import.sh
ports:
- '3000:3000'
links:
- postgres
depends_on:
- honeypots
networks:
- backend
- frontend
environment:
GF_SECURITY_ADMIN_USER: changeme457f6460cb287
GF_SECURITY_ADMIN_PASSWORD: changemed23b8cc6a20e0
logging:
driver: none
postgres:
image: postgres:9.6
container_name: chameleon_postgres
restart: always
networks:
- backend
command: -p 9999
environment:
POSTGRES_USER: changeme027a088931d22
POSTGRES_PASSWORD: changeme0f40773877963
logging:
driver: none
networks:
frontend:
internal: false
backend:
internal: true