Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
services:
searxng:
container_name: searxng
image: searxng/searxng:latest
ports:
- "8181:8080"
volumes:
- ./searxng:/etc/searxng:rw
env_file:
- .env
restart: unless-stopped
cap_drop:
- ALL
cap_add:
- CHOWN
- SETGID
- SETUID
- DAC_OVERRIDE
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# To execute this docker compose yml file use `docker compose -f docker-compose-v3-node-all-browsers.yml up`
# Add the `-d` flag at the end for detached execution
# To stop the execution, hit Ctrl+C, and then `docker compose -f docker-compose-v3-node-all-browsers.yml down`
services:
selenium-hub:
image: selenium/hub:4.36.0-20251001
container_name: selenium-hub
ports:
- "4442:4442"
- "4443:4443"
- "4444:4444"

all-browsers:
image: selenium/node-all-browsers:4.36.0-20251001
shm_size: 3gb
depends_on:
- selenium-hub
environment:
- SE_EVENT_BUS_HOST=selenium-hub
# Uncomment the following lines to set a value to environment variable of particular browser when GENERATE_CONFIG=true
# - SE_NODE_STEREOTYPE_CHROME=
# - SE_NODE_BROWSER_NAME_CHROME=
# - SE_NODE_BROWSER_VERSION_CHROME=
# - SE_NODE_PLATFORM_NAME_CHROME=
# - SE_BROWSER_BINARY_LOCATION_CHROME=
# - SE_NODE_STEREOTYPE_EXTRA_CHROME=
# - SE_NODE_MAX_SESSIONS_CHROME=
# - SE_NODE_STEREOTYPE_EDGE=
# - SE_NODE_BROWSER_NAME_EDGE=
# - SE_NODE_BROWSER_VERSION_EDGE=
# - SE_NODE_PLATFORM_NAME_EDGE=
# - SE_BROWSER_BINARY_LOCATION_EDGE=
# - SE_NODE_STEREOTYPE_EXTRA_EDGE=
# - SE_NODE_MAX_SESSIONS_EDGE=
# - SE_NODE_STEREOTYPE_FIREFOX=
# - SE_NODE_BROWSER_NAME_FIREFOX=
# - SE_NODE_BROWSER_VERSION_FIREFOX=
# - SE_NODE_PLATFORM_NAME_FIREFOX=
# - SE_BROWSER_BINARY_LOCATION_FIREFOX=
# - SE_NODE_STEREOTYPE_EXTRA_FIREFOX=
# - SE_NODE_MAX_SESSIONS_FIREFOX=
Loading
Loading