Only commit raw text after OCR for now.
[redakcja.git] / src / fileupload / static / lib / jQuery-File-Upload-10.32.0 / docker-compose.yml
1 version: '3.7'
2 services:
3   example:
4     build: server/php
5     ports:
6       - 127.0.0.1:80:80
7     volumes:
8       - .:/var/www/html
9   mocha:
10     image: blueimp/mocha-chrome
11     command: http://example/test
12     environment:
13       - WAIT_FOR_HOSTS=example:80
14     depends_on:
15       - example
16   chromedriver:
17     image: blueimp/chromedriver
18     tmpfs: /tmp
19     environment:
20       - DISABLE_X11=false
21       - ENABLE_VNC=true
22       - EXPOSE_X11=true
23     volumes:
24       - ./wdio/assets:/home/webdriver/assets:ro
25     ports:
26       - 127.0.0.1:5900:5900
27   geckodriver:
28     image: blueimp/geckodriver
29     tmpfs: /tmp
30     shm_size: 2g
31     environment:
32       - DISABLE_X11=false
33       - ENABLE_VNC=true
34       - EXPOSE_X11=true
35     volumes:
36       - ./wdio/assets:/home/webdriver/assets:ro
37     ports:
38       - 127.0.0.1:5901:5900
39   wdio:
40     image: blueimp/wdio
41     read_only: true
42     tmpfs:
43       - /tmp
44     environment:
45       - WAIT_FOR_HOSTS=chromedriver:4444 geckodriver:4444 example:80
46       - WINDOWS_HOST
47       - MACOS_ASSETS_DIR=$PWD/wdio/assets/
48       - WINDOWS_ASSETS_DIR
49     volumes:
50       - ./wdio:/app:ro
51       - ./wdio/reports:/app/reports
52     depends_on:
53       - chromedriver
54       - geckodriver
55       - example