diff --git a/chrome/stable/Dockerfile b/chrome/stable/Dockerfile index 1339fa9..a6463fb 100644 --- a/chrome/stable/Dockerfile +++ b/chrome/stable/Dockerfile @@ -1,3 +1,18 @@ +# Run Chrome in a container +# +# docker run -it \ +# --net host \ # may as well YOLO +# --cpuset-cpus 0 \ # control the cpu +# --memory 512mb \ # max memory it can use +# -v /tmp/.X11-unix:/tmp/.X11-unix \ # mount the X11 socket +# -e DISPLAY=unix$DISPLAY \ +# -v $HOME/Downloads:/root/Downloads \ +# -v $HOME/.config/google-chrome/:/data \ # if you want to save state +# --device /dev/snd \ # so we have sound +# --name chrome \ +# jess/chrome +# + # Base docker image FROM debian:sid MAINTAINER Jessica Frazelle