mirror of
https://github.com/Z4nzu/hackingtool
synced 2026-05-24 09:28:43 +00:00
16 lines
472 B
YAML
16 lines
472 B
YAML
version: "3.9"
|
|
services:
|
|
hackingtool:
|
|
# Bug 23 fix: was using external unverified image vgpastor/hackingtool
|
|
# Now builds from local Dockerfile — no third-party trust required
|
|
build: .
|
|
container_name: hackingtool
|
|
stdin_open: true
|
|
tty: true
|
|
volumes:
|
|
- .:/root/hackingtool
|
|
- hackingtool_data:/root/.hackingtool
|
|
# Bug 22 fix: removed port 22:22 — this is a CLI tool, SSH exposure is unnecessary
|
|
|
|
volumes:
|
|
hackingtool_data:
|