mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-05-03 13:48:54 +00:00

- tweak deploy a little further - start with rebuilding Dockerfiles - rework healthcheck for adbhoney CPU issues - bump adbhoney, ciscoasa, citrixhoneypot, conpot, cowriepot, ddospot to alpine 3.19 - fix conpot issue with py 3.11 - bump conpot to latest master - bump cowrie to latest master - add autoheal to tpotinit to restart unhealthy container (if healthcheck enabled)
28 lines
583 B
YAML
28 lines
583 B
YAML
version: '2.3'
|
|
|
|
networks:
|
|
ddospot_local:
|
|
|
|
services:
|
|
|
|
# Ddospot service
|
|
ddospot:
|
|
build: .
|
|
container_name: ddospot
|
|
restart: always
|
|
# cpu_count: 1
|
|
# cpus: 0.25
|
|
networks:
|
|
- ddospot_local
|
|
ports:
|
|
- "19:19/udp"
|
|
- "53:53/udp"
|
|
- "123:123/udp"
|
|
# - "161:161/udp"
|
|
- "1900:1900/udp"
|
|
image: "dtagdevsec/ddospot:alpha"
|
|
read_only: true
|
|
volumes:
|
|
- $HOME/tpotce/data/ddospot/log:/opt/ddospot/ddospot/logs
|
|
- $HOME/tpotce/data/ddospot/bl:/opt/ddospot/ddospot/bl
|
|
- $HOME/tpotce/data/ddospot/db:/opt/ddospot/ddospot/db
|