tabs vs spaces

Signed-off-by: Jessica Frazelle <princess@docker.com>
This commit is contained in:
Jessica Frazelle 2015-07-24 16:36:17 -07:00
parent 66dcac3b51
commit eddf0cb67c
5 changed files with 33 additions and 33 deletions

View File

@ -1,16 +1,16 @@
# Run Chrome in a container # Run Chrome in a container
# #
# docker run -it \ # docker run -it \
# --net host \ # may as well YOLO # --net host \ # may as well YOLO
# --cpuset-cpus 0 \ # control the cpu # --cpuset-cpus 0 \ # control the cpu
# --memory 512mb \ # max memory it can use # --memory 512mb \ # max memory it can use
# -v /tmp/.X11-unix:/tmp/.X11-unix \ # mount the X11 socket # -v /tmp/.X11-unix:/tmp/.X11-unix \ # mount the X11 socket
# -e DISPLAY=unix$DISPLAY \ # -e DISPLAY=unix$DISPLAY \
# -v $HOME/Downloads:/root/Downloads \ # -v $HOME/Downloads:/root/Downloads \
# -v $HOME/.config/google-chrome/:/data \ # if you want to save state # -v $HOME/.config/google-chrome/:/data \ # if you want to save state
# --device /dev/snd \ # so we have sound # --device /dev/snd \ # so we have sound
# --name chrome \ # --name chrome \
# jess/chrome # jess/chrome
# #
# Base docker image # Base docker image

View File

@ -1,14 +1,14 @@
# Run Libreoffice in a container # Run Libreoffice in a container
# docker run -d \ # docker run -d \
# -v /etc/localtime:/etc/localtime:ro \ # -v /etc/localtime:/etc/localtime:ro \
# -v /tmp/.X11-unix:/tmp/.X11-unix \ # -v /tmp/.X11-unix:/tmp/.X11-unix \
# -e DISPLAY=unix$DISPLAY \ # -e DISPLAY=unix$DISPLAY \
# -v $HOME/slides:/root/slides \ # -v $HOME/slides:/root/slides \
# -e GDK_SCALE \ # -e GDK_SCALE \
# -e GDK_DPI_SCALE \ # -e GDK_DPI_SCALE \
# --name libreoffice \ # --name libreoffice \
# jess/libreoffice # jess/libreoffice
# #
FROM debian:jessie FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com> MAINTAINER Jessica Frazelle <jess@docker.com>

View File

@ -1,8 +1,8 @@
# Run Lynx in a conatiner # Run Lynx in a conatiner
# #
# docker run --rm -it \ # docker run --rm -it \
# --name lynx \ # --name lynx \
# jess/lynx github.com/jfrazelle # jess/lynx github.com/jfrazelle
# #
FROM debian:jessie FROM debian:jessie
MAINTAINER Jessica Frazelle <jess@docker.com> MAINTAINER Jessica Frazelle <jess@docker.com>

View File

@ -1,12 +1,12 @@
# Run Mutt from a container # Run Mutt from a container
# docker run -it \ # docker run -it \
# -v /etc/localtime:/etc/localtime \ # -v /etc/localtime:/etc/localtime \
# -e GMAIL -e GMAIL_NAME \ # pass env variables to config # -e GMAIL -e GMAIL_NAME \ # pass env variables to config
# -e GMAIL_PASS -e GMAIL_FROM \ # -e GMAIL_PASS -e GMAIL_FROM \
# -v $HOME/.gnupg:/home/user/.gnupg \ # so you can encrypt ;) # -v $HOME/.gnupg:/home/user/.gnupg \ # so you can encrypt ;)
# --name mutt \ # --name mutt \
# jess/mutt # jess/mutt
# #
FROM debian:sid FROM debian:sid
MAINTAINER Jessica Frazelle <jess@docker.com> MAINTAINER Jessica Frazelle <jess@docker.com>

View File

@ -1,11 +1,11 @@
# Run Rainbowstream in a container # Run Rainbowstream in a container
# #
# docker run -it --rm \ # docker run -it --rm \
# -v /etc/localtime:/etc/localtime \ # -v /etc/localtime:/etc/localtime \
# -v $HOME/.rainbow_oauth:/root/.rainbow_oauth \ # mount config files # -v $HOME/.rainbow_oauth:/root/.rainbow_oauth \ # mount config files
# -v $HOME/.rainbow_config.json:/root/.rainbow_config.json \ # -v $HOME/.rainbow_config.json:/root/.rainbow_config.json \
# --name rainbowstream \ # --name rainbowstream \
# jess/rainbowstream # jess/rainbowstream
# #
FROM python:latest FROM python:latest
MAINTAINER Jessica Frazelle <jess@docker.com> MAINTAINER Jessica Frazelle <jess@docker.com>