mirror of
https://github.com/Z4nzu/hackingtool
synced 2024-11-14 19:55:19 +00:00
10 lines
192 B
YAML
10 lines
192 B
YAML
version: "3.9"
|
|
services:
|
|
hackingtool:
|
|
build: .
|
|
stdin_open: true # docker run -i
|
|
tty: true # docker run -t
|
|
volumes:
|
|
- .:/root/hackingtool
|
|
ports:
|
|
- 22:22 |