forked from bitExpert/magento2-force-login
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
51 lines (44 loc) · 932 Bytes
/
docker-compose.yml
File metadata and controls
51 lines (44 loc) · 932 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
# Mark Shust's Docker Configuration for Magento
# (https://github.com/markshust/docker-magento)
#
## Version 40.0.0
version: "3"
services:
app:
image: markoshust/magento-nginx:1.18-7
ports:
- "80:8000"
- "443:8443"
links:
- db
- phpfpm
volumes: &appvolumes
- ~/.composer:/var/www/.composer:cached
- appdata:/var/www/html
- sockdata:/sock
- ssldata:/etc/nginx/certs
phpfpm:
image: markoshust/magento-php:8.1-fpm-0
links:
- db
volumes: *appvolumes
db:
image: mariadb:10.4
command: --max_allowed_packet=64M
ports:
- "3306:3306"
env_file: env/db.env
volumes:
- dbdata:/var/lib/mysql
elasticsearch:
image: markoshust/magento-elasticsearch:7.16-0
ports:
- "9200:9200"
- "9300:9300"
environment:
- "discovery.type=single-node"
volumes:
appdata:
dbdata:
sockdata:
ssldata: