Closed sudw1n closed 1 year ago
Just for clarity, this is what the final version of the docker-compose.yml
file looks like:
version: '3'
services:
pwn:
container_name: pwn_test
image: skysider/pwndocker
cap_add:
- SYS_PTRACE
security_opt:
- seccomp:unconfined
ports:
- "23946:23946"
I will deal with it soon
While trying to open up a binary with
gdb
inside the container, it reports:A Stack Overflow answer suggested adding a
--security-opt seccomp=unconfined
option on the command line. Thedocker-compose
version of this would be:Adding this option to the
docker-compose.yml
makesgdb
work properly. I would just open up a PR but I'm not sure if this is the right approach. The issue is there, modifying thedocker-compose.yml
file is just a suggestion.