From c24a55281cea8ae1896b0f9062633e8bd580760e Mon Sep 17 00:00:00 2001 From: Jaren Glover Date: Sun, 19 Jul 2015 20:50:51 -0400 Subject: [PATCH] updated Chrome's Dockerfile w/ command --- chrome/stable/Dockerfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) 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