mirror of
https://github.com/technorabilia/docker-bits
synced 2024-11-10 13:10:31 +00:00
11 lines
392 B
Bash
11 lines
392 B
Bash
# This internal tool is used as a desktop sandbox in our CI process to grab a
|
|
# screenshot of a hopefully functional endpoint
|
|
|
|
. ./.env
|
|
docker run -d \
|
|
--name=tester \
|
|
-e URL=http://google.com `# Specify an endpoint, the container will automatically determine the correct protocol and program to use` \
|
|
-p 3000:3000 `# WebUI` \
|
|
--restart unless-stopped \
|
|
ghcr.io/linuxserver/tester
|