mirror of
https://github.com/telekom-security/tpotce.git
synced 2025-04-19 21:52:27 +00:00
19 lines
379 B
YAML
19 lines
379 B
YAML
version: '3.9'
|
|
|
|
services:
|
|
|
|
# T-Pot Init Service
|
|
tpotinit:
|
|
build: .
|
|
container_name: tpotinit
|
|
env_file:
|
|
- $HOME/tpotce/.env
|
|
restart: "no"
|
|
stop_grace_period: 60s
|
|
image: "dtagdevsec/tpotinit:24.04"
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock:ro
|
|
- $HOME/tpotce/data:/data
|
|
network_mode: "host"
|
|
cap_add:
|
|
- NET_ADMIN
|