mirror of
https://github.com/jcwimer/watir-docker
synced 2026-03-24 18:14:42 +00:00
9 lines
168 B
Bash
9 lines
168 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
#echo "Starting X virtual framebuffer (Xvfb) in background..."
|
|
Xvfb -ac :99 -screen 0 1280x1024x16 > /dev/null 2>&1 &
|
|
export DISPLAY=:99
|
|
|
|
exec "$@"
|