-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
58 lines (53 loc) · 1.18 KB
/
docker-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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
version: '3'
services:
php:
build:
context: ./docker/php
dockerfile: Dockerfile
args:
TIMEZONE: "Europe/Vilnius"
container_name: php
volumes:
- "./app:/var/www/html"
extra_hosts:
- host.docker.internal:host-gateway
environment:
PHP_IDE_CONFIG: "serverName=local"
XDEBUG_MODE: "debug"
networks:
- app-network
nginx:
build:
context: ./docker/nginx
dockerfile: Dockerfile
container_name: nginx
volumes:
- "./app:/var/www/html"
- "./docker/nginx/nginx.conf:/etc/nginx/nginx.conf"
- "./docker/nginx/conf.d/default.conf:/etc/nginx/conf.d/default.conf"
ports:
- "80:80"
depends_on:
- "php"
networks:
- app-network
mariadb:
image: mariadb:10.10
container_name: mariadb
command: --default-authentication-plugin=mysql_native_password
volumes:
- "mariadb_data:/var/lib/mysql"
ports:
- "3306:3306"
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: app
MYSQL_USER: user
MYSQL_PASSWORD: pass
networks:
- app-network
volumes:
mariadb_data:
networks:
app-network:
driver: bridge