forked from shopware/shopware
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yaml
More file actions
80 lines (74 loc) · 2.41 KB
/
compose.yaml
File metadata and controls
80 lines (74 loc) · 2.41 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
services:
web:
image: ghcr.io/shopware/docker-dev:php8.4-node24-caddy
ports:
- 8000:8000
- 5173:5173
- 9998:9998
- 9999:9999
environment:
APP_ENV: ${APP_ENV-dev}
COMPOSER_ROOT_VERSION: 6.7.9999999-dev
HOST: '0.0.0.0'
APP_URL: http://localhost:8000
DATABASE_URL: mysql://root:root@database/shopware
MAILER_DSN: smtp://mailer:1025
OPENSEARCH_URL: http://opensearch:9200
ADMIN_OPENSEARCH_URL: http://opensearch:9200
volumes:
- .:/var/www/html
depends_on:
database:
condition: service_healthy
database:
image: mariadb:latest
ports:
- 3306:3306
environment:
MARIADB_ROOT_PASSWORD: root
MARIADB_DATABASE: shopware
command:
- --sql_mode=STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION
- --log_bin_trust_function_creators=1
- --binlog_cache_size=16M
- --key_buffer_size=0
- --join_buffer_size=1024M
- --innodb_log_file_size=128M
- --innodb_buffer_pool_size=1024M
- --innodb_buffer_pool_instances=1
- --group_concat_max_len=320000
- --default-time-zone=+00:00
- --max_binlog_size=512M
- --binlog_expire_logs_seconds=86400
volumes:
- db-data:/var/lib/mysql
healthcheck:
test: [ "CMD", "mariadb-admin" ,"ping", "-h", "localhost", "-proot" ]
start_interval: 3s
start_period: 10s
interval: 5s
timeout: 1s
retries: 10
adminer:
image: adminer
stop_signal: SIGKILL
depends_on: [ database ]
environment:
ADMINER_DEFAULT_SERVER: database
ports:
- '9080:8080'
valkey:
image: valkey/valkey:alpine
command: [ "--maxmemory-policy", "volatile-lfu", "--save", "", "--appendonly", "no" ]
mailer:
image: axllent/mailpit
ports:
- '8025:8025'
opensearch:
image: opensearchproject/opensearch:2
environment:
OPENSEARCH_INITIAL_ADMIN_PASSWORD: 'c3o_ZPHo!'
discovery.type: single-node
plugins.security.disabled: 'true'
volumes:
db-data: