diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 000000000..9f75ecdd1 --- /dev/null +++ b/.dockerignore @@ -0,0 +1,2 @@ +# venv +.venv/ diff --git a/.gitignore b/.gitignore index d40cc7503..e6d2fdfde 100644 --- a/.gitignore +++ b/.gitignore @@ -84,3 +84,6 @@ tests/qemu-tests/images .zig/ gdb.txt + +# venv +.venv/ \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml index bffdffd9a..c5b01644a 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,14 +1,16 @@ version: "3.8" services: - main: &base-spec + base: &base-spec build: . - volumes: - - .:/pwndbg platform: linux/amd64 security_opt: - seccomp:unconfined cap_add: - SYS_PTRACE + main: + <<: *base-spec + volumes: + - .:/pwndbg ubuntu18.04: <<: *base-spec