feat: add crafted docker scripts and default profile

This commit is contained in:
2026-06-25 22:44:28 +01:00
parent a6b798970f
commit 68a45fe391
4 changed files with 141 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
services:
havoc-teamserver:
container_name: havoc-teamserver
build:
context: .
dockerfile: Dockerfile
volumes:
- ./profiles:/app/profiles
- havoc-data:/app/data
ports:
- "40056:40056"
networks:
- c2-network
restart: unless-stopped
command: ["server", "--profile", "/app/profiles/default.yaotl", "--debug"]
cloudflare-tunnel:
container_name: havoc-cloudflare-tunnel
image: cloudflare/cloudflared:latest
restart: unless-stopped
command: tunnel --no-autoupdate run --token ${TUNNEL_TOKEN}
depends_on:
- havoc-teamserver
networks:
- c2-network
networks:
c2-network:
driver: bridge
volumes:
havoc-data:
driver: local