-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
56 lines (51 loc) · 1.76 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
services:
####################################################################################################
# PHP
####################################################################################################
php:
build: .docker/php
image: tpqmis
ports:
- 5173:5173
volumes:
- .:/var/www:cached
# queue:
# image: tpqmis
# restart: always
# depends_on:
# - php
# volumes:
# - .:/var/www
# command: php artisan queue:work
####################################################################################################
# Nginx
####################################################################################################
nginx:
image: nginx
restart: always
ports:
- 80:80
volumes:
- .:/var/www
- .docker/nginx/default.conf:/etc/nginx/conf.d/default.conf
- .docker/nginx/nginx.conf:/etc/nginx/nginx.conf
depends_on:
- php
####################################################################################################
# DATABASE (MySQL)
####################################################################################################
db:
image: mysql:8.1
restart: always
ports:
- 3306:3306
volumes:
- .docker/db/data:/var/lib/mysql
- .docker/logs:/var/log/mysql
- .docker/db/my.cnf:/etc/mysql/conf.d/my.cnf
- .docker/db/sql:/docker-entrypoint-initdb.d
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: tpqmis
MYSQL_USER: tpqmis
MYSQL_PASSWORD: tpqmis