-
-
Notifications
You must be signed in to change notification settings - Fork 115
/
docker-compose-temp.yml
55 lines (51 loc) · 1009 Bytes
/
docker-compose-temp.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
version: '3.1'
services:
honeypots:
build:
context: .
dockerfile: ./honeypots-Dockerfile
restart: always
cap_add:
- NET_ADMIN
depends_on:
- postgres
networks:
- backend
- frontend
ports:
{temp}
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