mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 19:32:30 +01:00
6ebc157029
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
16 lines
278 B
Bash
Executable File
16 lines
278 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set -o pipefail
|
|
|
|
mkdir -p "${HOME}/rootfs"
|
|
mkdir -p "${HOME}/containerroot"
|
|
|
|
# untar the rootfs
|
|
tar -C "${HOME}/rootfs" -xf "${HOME}/busybox.tar"
|
|
|
|
# create the spec
|
|
runc spec --rootless
|
|
|
|
# run the container
|
|
runc --root "${HOME}/containerroot" run mycontainer
|