-
Notifications
You must be signed in to change notification settings - Fork 4
/
docker-compose.yml
47 lines (45 loc) · 1.41 KB
/
docker-compose.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
version: "3.7"
services:
chrome:
image: browserless/chrome
ports:
- 3000:3000
environment:
PREBOOT_CHROME: 'true'
MAX_CONCURRENT_SESSIONS: 2
FUNCTION_ENABLE_INCOGNITO_MODE: 'true'
KEEP_ALIVE: 'true'
# chrome:
# image: chromedp/headless-shell:stable
# command:
# - --disable-renderer-backgrounding
# - --mute-audio
# - --enable-features=NetworkService,NetworkServiceInProcess
# - --disable-features=site-per-process,Translate,BlinkGenPropertyTrees
# - --disable-ipc-flooding-protection
# - --disable-prompt-on-repost
# - --disable-backgrounding-occluded-windows
# - --disable-extensions
# - --disable-hang-monitor
# - --safebrowsing-disable-auto-update
# - --enable-automation
# - --no-first-run
# - --hide-scrollbars
# - --disable-background-networking
# - --metrics-recording-only
# - --password-store=basic
# - --no-default-browser-check
# - --disable-breakpad
# - --disable-client-side-phishing-detection
# - --disable-dev-shm-usage
# - --headless
# - --disable-background-timer-throttling
# - --disable-default-apps
# - --disable-popup-blocking
# - --force-color-profile=srgb
# - --disable-sync
# - --use-mock-keychain
# - --remote-debugging-port=9222
# - --incognito
# ports:
# - 9222:9222