forked from qeeqbox/chameleon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose-dev.yml
executable file
·68 lines (64 loc) · 1.13 KB
/
docker-compose-dev.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
version: '3.1'
services:
honeypot:
build: ./honeypot
restart: always
cap_add:
- NET_ADMIN
depends_on:
- postgres
networks:
- backend
- frontend
expose:
- '21'
- '22'
- '23'
- '25'
- '53'
- '80'
- '110'
- '143'
- '443'
- '445'
- '1080'
- '3306'
- '3389'
- '5900'
- '6379'
- '8080'
grafana:
build: ./grafana
container_name: grafana
command: ./import.sh
ports:
- '3000:3000'
links:
- postgres
depends_on:
- honeypot
networks:
- backend
- frontend
environment:
GF_SECURITY_ADMIN_USER: changeme457f6460cb287
GF_SECURITY_ADMIN_PASSWORD: changemed23b8cc6a20e0
logging:
driver: none
postgres:
image: postgres:9.6
container_name: 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