From b11b7d2fb3df244af9b765e862db36a5cd9a4c63 Mon Sep 17 00:00:00 2001 From: crossminds <50927605+crossminds@users.noreply.github.com> Date: Mon, 16 Sep 2019 20:39:33 +0200 Subject: [PATCH] Allow to pass command line arguments to dockerized firefox (#481) * Allow to pass command line arguments to dockerized firefox * Double quoted --- firefox/entrypoint.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/firefox/entrypoint.sh b/firefox/entrypoint.sh index 924d340..df262e6 100755 --- a/firefox/entrypoint.sh +++ b/firefox/entrypoint.sh @@ -1,7 +1,7 @@ #!/bin/bash if [[ -e /dev/snd ]]; then - exec apulse firefox + exec apulse firefox "$@" else - exec firefox + exec firefox "$@" fi