An open API service indexing awesome lists of open source software.

https://github.com/dlsniper/crashdumper


https://github.com/dlsniper/crashdumper

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

build the binary using:

```bash
docker build . && \
docker run -v :/sources/crashdump --env CGO_ENABLED=0
```

run the build using:

```bash
docker build -f Dockerfile.run . && \
docker run -p 8080:8080 -v :/sources/crashdump --env GOTRACEBACK=crash --cap-add="SYS_PTRACE" --security-opt="apparmor=unconfined"
```

to get a dump run:

```bash
docker exec -it /bin/bash
```
and then inside the container, run:
```bash
gcore -o core.dmp 1
```