I'm still playing around, but here are some issues I found:
The make command fails with:
Step 2/5 : RUN addgroup mbuilds -g 20
---> Running in 20a3fe692185
addgroup: gid '20' in use
The command '/bin/sh -c addgroup mbuilds -g 20' returned a non-zero code: 1
make: *** [personal] Error 1
Not sure what the gid should be, but I manually edited personalize.sh and set export my_gid=1000
Then, the docker run command did not work:
docker run -it --rm -p 1337:1337 --user mbuilds -v $PWD:/repos minimumbuilds/vim_ide vim /repos
Unable to find image 'minimumbuilds/vim_ide:latest' locally
I had to use docker run -it --rm -p 1337:1337 --user mbuilds -v $PWD:/repos vim_ide vim /repos to get it start.
I'm still playing around, but here are some issues I found:
The
make
command fails with:Not sure what the gid should be, but I manually edited
personalize.sh
and setexport my_gid=1000
Then, the
docker run
command did not work:I had to use
docker run -it --rm -p 1337:1337 --user mbuilds -v $PWD:/repos vim_ide vim /repos
to get it start.