forked from shopware/development
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
67 lines (60 loc) · 1.31 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
59
60
61
62
63
64
65
66
67
version: '3.7'
networks:
shopware:
services:
app_server:
image: shopware/development:7.4-composer-2
networks:
shopware:
aliases:
- docker.vm
extra_hosts:
- "docker.vm:127.0.0.1"
volumes:
- ~/.composer:/.composer
tmpfs:
- /tmp:mode=1777
app_mysql:
build: dev-ops/docker/containers/mysql
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_USER: app
MYSQL_PASSWORD: app
networks:
shopware:
aliases:
- mysql
cypress:
image: cypress/included:5.6.0
tty: true
ipc: host
environment:
- CYPRESS_baseUrl=http://docker.vm:8000
- DISPLAY
networks:
shopware:
volumes:
- ./tests/e2e:/e2e
# for Cypress to communicate with the X11 server pass this socket file
# in addition to any other mapped volumes
- /tmp/.X11-unix:/tmp/.X11-unix
entrypoint: /bin/bash
mailhog:
image: mailhog/mailhog
networks:
shopware:
aliases:
- mailhog
adminer:
image: adminer:latest
networks:
shopware:
elasticsearch:
image: elastic/elasticsearch:7.8.0
networks:
shopware:
aliases:
- elasticsearch
environment:
- "ES_JAVA_OPTS=-Xms512m -Xmx512m"
- discovery.type=single-node