updated Chrome's Dockerfile w/ command

This commit is contained in:
Jaren Glover 2015-07-19 20:50:51 -04:00 committed by Jessica Frazelle
parent 7539269f77
commit c24a55281c

View File

@ -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 # Base docker image
FROM debian:sid FROM debian:sid
MAINTAINER Jessica Frazelle <jess@docker.com> MAINTAINER Jessica Frazelle <jess@docker.com>