-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (30 loc) · 1.23 KB
/
Copy pathdocker-compose.yml
File metadata and controls
31 lines (30 loc) · 1.23 KB
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
# =============================================================================
# Remote Browser Kit — docker-compose.yml
# =============================================================================
# This file has ONE job only: BUILD the image.
#
# Do NOT run "docker compose up" to launch browsers.
# Use browser.cmd instead:
#
# browser.cmd build <- Chromium only (default), run once first
# browser.cmd start 3 <- start 3 Chromium browsers
# browser.cmd start 3 firefox <- start 3 Firefox browsers
# browser.cmd stop <- stop all
# browser.cmd list <- show Eggplant SUT table
#
# To build in Firefox/Edge/WebKit, set INCLUDE_FIREFOX/INCLUDE_EDGE/
# INCLUDE_WEBKIT=true in `env` before `browser.cmd build` — see
# docs/browsers.md for the full build matrix. Calling `docker compose
# build` directly (bypassing browser.cmd) uses the defaults below unless
# you pass --build-arg yourself.
# =============================================================================
services:
browser:
build:
context: .
dockerfile: Dockerfile
args:
INCLUDE_FIREFOX: "false"
INCLUDE_EDGE: "false"
INCLUDE_WEBKIT: "false"
image: remote-browser-kit:1.0