Chrome instance and panel to manage startup and shutdowns easily.
The current instance binds chrome to 0.0.0.0 when starting via API.
Use the env variable REMOTE_ADDRESS
to change the address of the chrome instance between physical or network.
The application will pass alp health checks when using port 6000
to get the status of the chrome container.
A side loaded application is required to run chrome on a load balancer, one of the main purposes of the control panel.
The default port is 9222
for chrome.
In order to build without docker set the BUILD_CHROME
env var to true.
If your running locally use the following to start the args with the first param chrome_driver '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome'
fork
to start a new chrome instance or use fork/$port
with the port to startup the instance.shutdown/$PID
to shutdown the instance. ex: curl --location --request POST 'http://localhost:6000/shutdown/77057'
127.0.0.1
.init
to auto start chrome on 9222.Example to start chrome (all params are optional):
```sh chrome_driver '/Applications/Google Chrome.app/Contents/MacOS/Google Chrome' 127.0.0.1 init
```