sneak
/
docker-linux-vm
Archivé
1
0
Bifurcation 0
Cette révision appartient à :
Jeffrey Paul 2019-11-12 17:08:07 -08:00
révision 13c28cad52
4 fichiers modifiés avec 16 ajouts et 0 suppressions

3
Dockerfile Fichier normal
Voir le fichier

@ -0,0 +1,3 @@
FROM ubuntu:bionic
ADD ./run.sh /tmp/run.sh
RUN bash /tmp/run.sh && rm /tmp/run.sh

4
Makefile Fichier normal
Voir le fichier

@ -0,0 +1,4 @@
default: build
build:
docker build .

4
README.md Fichier normal
Voir le fichier

@ -0,0 +1,4 @@
# sneak/docker-linux-vm
This is designed to run stuff that needs privileged access inside an
unprivileged container, by running a whole qemu vm inside the container.

5
run.sh Fichier normal
Voir le fichier

@ -0,0 +1,5 @@
#!/bin/bash
export DEBIAN_FRONTEND=noninteractive
apt update
apt install -y qemu-user