You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
docker-browser-box/Makefile

30 lines
838 B
Makefile

10 years ago
all: help
help:
@echo ""
@echo "-- Help Menu"
@echo ""
@echo " 1. make build - build the browser-bundle image"
@echo " 1. make install - install launch wrappers"
@echo " 2. make google-chrome - launch google-chrome"
@echo " 2. make tor-browser - launch tor-browser"
@echo " 2. make bash - bash login"
@echo ""
build:
@docker build --tag=${USER}/browser-bundle .
install uninstall: build
10 years ago
@docker run -it --rm \
--volume=/usr/local/bin:/target \
${USER}/browser-bundle:latest $@
10 years ago
google-chrome tor-browser bash:
@docker run -it --rm \
--env="USER_UID=$(shell id -u)" \
--env="USER_GID=$(shell id -g)" \
--env="DISPLAY=${DISPLAY}" \
--volume=/tmp/.X11-unix:/tmp/.X11-unix \
--volume=/run/user/$(shell id -u)/pulse:/run/pulse \
${USER}/browser-bundle:latest $@