-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
58 lines (53 loc) · 1.26 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
48
49
50
51
52
53
54
55
56
57
58
version: '3.4'
services:
php:
build:
context: .
target: sylius_barcode_search_plugin_php
image: nedac/sylius_barcode_search_plugin_php:latest
environment:
- APP_ENV=test
- DATABASE_URL=mysql://sylius:[email protected]:3306/sylius_barcodes
volumes:
- .:/srv/sylius
network_mode: host
mysql:
image: mysql:5.7
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=sylius_barcodes
- MYSQL_USER=sylius
- MYSQL_PASSWORD=barcodes
ports:
- "3306:3306"
network_mode: host
nginx:
build:
context: .
target: sylius_barcode_search_plugin_nginx
image: nedac/sylius_barcode_search_plugin_nginx:latest
volumes:
- .:/srv/sylius
ports:
- "8080:8080"
network_mode: host
nodejs:
build:
context: .
target: sylius_barcode_search_plugin_nodejs
image: nedac/sylius_barcode_search_plugin_nodejs:latest
environment:
- GULP_ENV=dev
- PHP_HOST=127.0.0.1
- PHP_PORT=9000
volumes:
- .:/srv/sylius
network_mode: host
chrome:
image: selenium/standalone-chrome-debug:latest
volumes:
- /dev/shm:/dev/shm
- ./tests/Resources/video:/video
ports:
- "5900:5900"
network_mode: host