generated from yii-starter-kit/yii2-starter-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
77 lines (67 loc) · 1.41 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
77
version: "3.7"
services:
frontend:
build: frontend
volumes:
# Mount source-code for development
- ./:/app
backend:
build: backend
volumes:
# Mount source-code for development
- ./:/app
console:
build: console
volumes:
# Re-use local composer cache via host-volume
- ~/.composer-docker/cache:/root/.composer/cache:delegated
# Mount source-code for development
- ./:/app
working_dir: /app
storage:
build: storage
volumes:
# Mount source-code for development
- ./:/app
api:
build: api
volumes:
# Mount source-code for development
- ./:/app
nginx:
image: nginx:stable-alpine
ports:
- 80:80
volumes:
- ./:/app
- ./docker/nginx/vhost.conf:/etc/nginx/conf.d/vhost.conf
depends_on:
- api
- frontend
- backend
- console
- storage
node:
image: node:16-alpine
volumes:
- ./:/app
working_dir: /app
mailcatcher:
image: schickling/mailcatcher:latest
ports:
- 1080:1080
db:
image: mysql:8
volumes:
- /var/lib/mysql
- ./docker/mysql/config.cnf:/etc/mysql/conf.d/config.cnf
ports:
- 3306:3306
environment:
MYSQL_ROOT_PASSWORD: root
MYSQL_DATABASE: yii2-starter-kit
MYSQL_USER: ysk_dbu
MYSQL_PASSWORD: ysk_pass
networks:
default:
name: yii2-starter-kit_default