forked from mozilla/experimenter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-integration-test.yml
More file actions
44 lines (43 loc) · 939 Bytes
/
docker-compose-integration-test.yml
File metadata and controls
44 lines (43 loc) · 939 Bytes
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
version: "3"
services:
firefox:
image: selenium/standalone-firefox
env_file: .env
platform: linux/amd64
environment:
- MOZ_HEADLESS
- FIREFOX_CHANNEL
- PYTEST_ARGS
- PYTEST_BASE_URL
- INTEGRATION_TEST_KINTO_URL
- INTEGRATION_TEST_NGINX_URL
- MOZ_REMOTE_SETTINGS_DEVTOOLS=1
volumes:
- .:/code
- /code/experimenter/tests/integration/.tox
depends_on:
- nginx
- kinto
- demo-app-frontend
expose:
- "4444"
ports:
- "5900:5900"
- "7902:7900"
shm_size: 2g
working_dir: /code
rust-sdk:
image: experimenter:integration-tests
env_file: .env
volumes:
- .:/code
- /code/experimenter/tests/integration/.tox
working_dir: /code
depends_on:
- nginx
- kinto
demo-app-frontend:
build:
context: ./demo-app/frontend
dockerfile: Dockerfile
command: /bin/true