diff options
author | Anthony Wang | 2020-07-29 19:59:42 -0500 |
---|---|---|
committer | GitHub | 2020-07-29 19:59:42 -0500 |
commit | 878f4dca1d5b6778002ef0d4ceed122d17c87842 (patch) | |
tree | cef016d8c863e3d6eab76859b9b3ff9449b2787b | |
parent | 4feba8fb637fc7ff61df1349e07cfd24e8a64f6d (diff) |
Update Dockerfile
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,4 +4,4 @@ RUN pacman -Sy --noconfirm RUN pacman -S docker --noconfirm
-RUN echo $'if [ $DEPTH > 1 ]\nthen\n\tdockerd &>/dev/null & disown\n\twhile (! docker stats --no-stream )\n\tdo\n\t\techo "Waiting for Docker to launch..."\n\t\tsleep 1\n\tdone\n\tdocker run --privileged -it -e DEPTH=$((DEPTH-1)) --name arch-all-the-way-down ta180m/arch-all-the-way-down\nfi' > ~root/.bashrc
+RUN echo $'if [ $DEPTH != 1 ]\nthen\n\tdockerd &>/dev/null & disown\n\twhile (! docker stats --no-stream )\n\tdo\n\t\techo "Waiting for Docker to launch..."\n\t\tsleep 1\n\tdone\n\tdocker run --privileged -it -e DEPTH=$((DEPTH-1)) -v /var/run/docker.sock:/var/run/docker.sock --name arch-all-the-way-down ta180m/arch-all-the-way-down\nfi' > ~root/.bashrc
|