mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-30 04:08:50 +00:00

use docker-compose from pypi with support for 2.1 compose file version logstash, kibana, head & netdata are now depending on a healthy elasticsearch container before starting remove alerta-cli tweak installer
105 lines
2 KiB
YAML
105 lines
2 KiB
YAML
# T-Pot (Honeypots)
|
|
# For docker-compose ...
|
|
version: '2.1'
|
|
|
|
networks:
|
|
cowrie_local:
|
|
dionaea_local:
|
|
elasticpot_local:
|
|
ewsposter_local:
|
|
glastopf_local:
|
|
|
|
services:
|
|
|
|
# Cowrie service
|
|
cowrie:
|
|
container_name: cowrie
|
|
restart: always
|
|
networks:
|
|
- cowrie_local
|
|
cap_add:
|
|
- NET_BIND_SERVICE
|
|
ports:
|
|
- "22:22"
|
|
- "23:23"
|
|
image: "dtagdevsec/cowrie:1706"
|
|
volumes:
|
|
- /data/cowrie:/data/cowrie
|
|
|
|
# Dionaea service
|
|
dionaea:
|
|
container_name: dionaea
|
|
stdin_open: true
|
|
restart: always
|
|
networks:
|
|
- dionaea_local
|
|
cap_add:
|
|
- NET_BIND_SERVICE
|
|
ports:
|
|
- "21:21"
|
|
- "42:42"
|
|
- "69:69/udp"
|
|
- "8081:80"
|
|
- "135:135"
|
|
- "443:443"
|
|
- "445:445"
|
|
- "1433:1433"
|
|
- "1723:1723"
|
|
- "1883:1883"
|
|
- "1900:1900"
|
|
- "3306:3306"
|
|
- "5060:5060"
|
|
- "5061:5061"
|
|
- "5060:5060/udp"
|
|
- "11211:11211"
|
|
image: "dtagdevsec/dionaea:1706"
|
|
volumes:
|
|
- /data/dionaea:/data/dionaea
|
|
|
|
# Elasticpot service
|
|
elasticpot:
|
|
container_name: elasticpot
|
|
restart: always
|
|
networks:
|
|
- elasticpot_local
|
|
ports:
|
|
- "9200:9200"
|
|
image: "dtagdevsec/elasticpot:1706"
|
|
volumes:
|
|
- /data/elasticpot:/data/elasticpot
|
|
|
|
# Ewsposter service
|
|
ewsposter:
|
|
container_name: ewsposter
|
|
restart: always
|
|
networks:
|
|
- ewsposter_local
|
|
image: "dtagdevsec/ewsposter:1706"
|
|
volumes:
|
|
- /data:/data
|
|
- /data/ews/conf/ews.ip:/opt/ewsposter/ews.ip
|
|
|
|
# Glastopf service
|
|
glastopf:
|
|
container_name: glastopf
|
|
restart: always
|
|
networks:
|
|
- glastopf_local
|
|
ports:
|
|
- "80:80"
|
|
image: "dtagdevsec/glastopf:1706"
|
|
volumes:
|
|
- /data/glastopf:/data/glastopf
|
|
- /data/ews:/data/ews
|
|
|
|
# Honeytrap service
|
|
honeytrap:
|
|
container_name: honeytrap
|
|
restart: always
|
|
network_mode: "host"
|
|
cap_add:
|
|
- NET_ADMIN
|
|
image: "dtagdevsec/honeytrap:1706"
|
|
volumes:
|
|
- /data/honeytrap:/data/honeytrap
|
|
- /data/ews:/data/ews
|