mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-05-05 14:48:53 +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)
18 lines
367 B
YAML
18 lines
367 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
|
|
# T-Pot Init Service
|
|
tpotinit:
|
|
build: .
|
|
container_name: tpotinit
|
|
env_file:
|
|
- $HOME/tpotce/.env
|
|
restart: "no"
|
|
image: "ghcr.io/telekom-security/tpotinit:alpha"
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
- $HOME/tpotce/data:/data
|
|
network_mode: "host"
|
|
cap_add:
|
|
- NET_ADMIN
|