You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-1
Original file line number
Diff line number
Diff line change
@@ -68,6 +68,7 @@ Talk to us at https://www.selenium.dev/support/
68
68
*[Mask sensitive information in console logs](#mask-sensitive-information-in-console-logs)
69
69
*[Secure Connection](#secure-connection)
70
70
*[Browser language and locale](#browser-language-and-locale)
71
+
*[Managing processes in container](#managing-processes-in-container)
71
72
*[Building the images](#building-the-images)
72
73
*[Build the images with specific versions](#build-the-images-with-specific-versions)
73
74
*[Upgrade browser version in the images](#upgrade-browser-version-in-the-images)
@@ -785,7 +786,7 @@ host-config-keys = ["Binds"]
785
786
786
787
Volumes config in docker compose file
787
788
788
-
```dockerfile
789
+
```yaml
789
790
services:
790
791
node-docker:
791
792
image: selenium/node-docker:latest
@@ -1309,6 +1310,17 @@ FIREFOX_VERSION=$(docker run --rm --entrypoint="" selenium/node-firefox:latest f
1309
1310
1310
1311
Or, you can mount the container directory `/home/seluser/firefox/distribution/extensions` to host directory to access packs were pre-built in the container for using in your test script.
1311
1312
1313
+
## Managing processes in container
1314
+
1315
+
[Supervisor](http://supervisord.org/configuration.html) is used to manage processes and logs in the container. Few configuration for `supervisord` can be set via environment variables as below:
0 commit comments