forked from shopware/shopware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yaml
39 lines (34 loc) · 883 Bytes
/
docker-compose.yaml
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
version: '3.7'
services:
database:
image: mysql:${MYSQL_VERSION:-8}-oracle
ports:
- '3306:3306'
tmpfs:
- /var/lib/mysql:uid=999,gid=999
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: shopware
adminer:
image: adminer:latest
depends_on: [ database ]
environment:
ADMINER_DEFAULT_SERVER: database
ports:
- '8080:8080'
mailer:
image: mailhog/mailhog
ports:
- '8025:8025'
opensearch:
image: opensearchproject/opensearch:2
ports:
- '9200:9200'
volumes:
- opensearch-data:/usr/share/opensearch/data
environment:
discovery.type: single-node
plugins.security.disabled: 'true'
volumes:
db-data:
opensearch-data: