-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yml
44 lines (44 loc) · 896 Bytes
/
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
services:
redis:
container_name: redis
image: redis:alpine3.19
hostname: redis
command: ["redis-server", "--appendonly", "yes"]
ports:
- 6379:6379
volumes:
- redis-data:/data
networks:
- redis-net
app:
container_name: app
build:
context: ./docker/app
volumes:
- ./app:/var/www/app
- ./docker/app/xdebug.ini:/usr/local/etc/php/conf.d/docker-php-ext-xdebug.ini
depends_on:
- redis
extra_hosts:
- "host.docker.internal:host-gateway"
networks:
- redis-net
- nginx
nginx:
container_name: nginx
image: nginx:alpine
ports:
- '8080:80'
volumes:
- ./app:/var/www/app
- ./docker/nginx/default.conf:/etc/nginx/conf.d/default.conf
depends_on:
- app
- redis
networks:
- nginx
networks:
redis-net:
nginx:
volumes:
redis-data: