forked from williangringo/pagarme-magento
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
45 lines (40 loc) · 954 Bytes
/
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
version: '2'
services:
selenium:
image: selenium/hub:3.10.0
ports:
- "4444:4444"
firefox:
image: selenium/node-firefox-debug:2.53.0
privileged: true
depends_on:
- selenium
ports:
- "5900:5900"
environment:
- no_proxy=localhost
- HUB_PORT_4444_TCP_ADDR=selenium
- HUB_PORT_4444_TCP_PORT=4444
mysql:
image: mysql:5.5
env_file: .env
magento:
image: magneto:1
build:
dockerfile: ./Dockerfile
context: ./
env_file: .env
volumes:
- .:/opt/docker/magento/module/
working_dir: /var/www
ports:
- "80:80"
depends_on:
- mysql
composer:
image: pagarme/composer
working_dir: /magneto
volumes:
- .:/magneto
command:
- install