generated from nystudio107/spin-up-craft
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
executable file
·76 lines (75 loc) · 1.91 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
version: '3.7'
services:
# nginx - web server
nginx:
build:
context: ./.docker-config/nginx
dockerfile: ./Dockerfile
depends_on:
- "php"
env_file: &env
- ./.env
init: true
ports:
- "${DEV_SERVER_PORT}:80"
volumes:
- cpresources:/var/www/project/web/cpresources:delegated
- ./web:/var/www/project/web:cached
# php - run php-fpm
php:
build: &php-build
context: ./.docker-config/php
dockerfile: ./Dockerfile
depends_on:
- "mysql"
env_file:
*env
expose:
- "9000"
init: true
tty: true
volumes: &php-volumes
- cpresources:/var/www/project/web/cpresources:delegated
- storage:/var/www/project/storage:delegated
- ./:/var/www/project:cached
# Specific directories that need to be bind-mounted
- ./storage/logs:/var/www/project/storage/logs:delegated
- ./storage/runtime/compiled_templates:/var/www/project/storage/runtime/compiled_templates:delegated
- ./storage/runtime/compiled_classes:/var/www/project/storage/runtime/compiled_classes:delegated
- ./vendor:/var/www/project/vendor:delegated
# mysql - database
mysql:
build:
context: ./.docker-config/mysql
dockerfile: ./Dockerfile
cap_add:
- SYS_NICE # CAP_SYS_NICE
command: mysqld --default-authentication-plugin=mysql_native_password
environment:
MYSQL_ROOT_PASSWORD: secret
MYSQL_DATABASE: project
MYSQL_USER: project
MYSQL_PASSWORD: project
init: true
expose:
- "3306"
volumes:
- db-data:/var/lib/mysql
- ./db-seed:/docker-entrypoint-initdb.d
# queue - runs queue jobs via php craft queue/listen
queue:
build:
*php-build
command: /var/www/run_queue.sh
depends_on:
- "php"
env_file:
*env
init: true
tty: true
volumes:
*php-volumes
volumes:
db-data:
cpresources:
storage: