https://github.com/gukoff/vm
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/gukoff/vm
- Owner: gukoff
- License: mit
- Created: 2021-06-20T12:39:33.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-10-06T12:32:24.000Z (over 1 year ago)
- Last Synced: 2025-01-20T05:41:30.303Z (4 months ago)
- Language: Dockerfile
- Size: 18.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# [gukoff/vm](https://hub.docker.com/repository/docker/gukoff/vm)
Ubuntu-based image with many pre-installed packages.
To always have a ready-to-use Ubuntu when I need one.
# Running with access to perf and strace
By default, tracing capabilities [are restricted](https://jvns.ca/blog/2020/04/29/why-strace-doesnt-work-in-docker/)
in docker containers.An easy workaround (don't use this anywhere except dev) is to disable all safeguards:
```bash
docker run --name myvm --rm -d --privileged=true --security-opt seccomp=unconfined gukoff/vm
docker exec -u 0 -it myvm /bin/fish
```