-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
34 lines (30 loc) · 891 Bytes
/
docker-compose.yml
File metadata and controls
34 lines (30 loc) · 891 Bytes
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
version: '3'
services:
###> shopware/core ###
database:
image: mysql:8.3.0-oracle
environment:
MYSQL_DATABASE: ${MYSQL_DATABASE:-shopware}
# You should definitely change the password in production
MYSQL_ROOT_PASSWORD: ${MYSQL_ROOT_PASSWORD:-!ChangeMe!}
MYSQL_USER: ${MYSQL_USER:-shopware}
MYSQL_PASSWORD: ${MYSQL_PASSWORD:-!ChangeMe!}
volumes:
- ./docker/db/data:/var/lib/mysql:rw
###< shopware/core ###
###> shopware/elasticsearch ###
# opensearch:
# image: opensearchproject/opensearch:2
# volumes:
# - opensearch-data:/usr/share/opensearch/data
# environment:
# discovery.type: single-node
# plugins.security.disabled: 'true'
###< shopware/elasticsearch ###
volumes:
###> shopware/core ###
db-data:
###< shopware/core ###
###> shopware/elasticsearch ###
# opensearch-data:
###< shopware/elasticsearch ###