-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
71 lines (64 loc) · 1.39 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
version: '3'
services:
yarn:
build:
context: ./
dockerfile: yarn.Dockerfile
working_dir: /workspace
volumes:
- ./../:/workspace
entrypoint:
- yarn
app:
build:
context: ./
dockerfile: app.Dockerfile
working_dir: /var/www
volumes:
- ./../:/var/www
environment:
DB_PORT: 3306
DB_HOST: database
links:
- redis:redis
web:
build:
context: ./
dockerfile: web.Dockerfile
working_dir: /var/www
volumes:
- ./../:/var/www
ports:
- ${NGINX_SERVER_PORT}:80
extra_hosts:
${COMPOSE_PROJECT_NAME}.127.0.0.1.xip.io: 127.0.0.1
${COMPOSE_PROJECT_NAME}.127.0.0.1.nip.io: 127.0.0.1
database:
image: mysql:5.7
volumes:
- ./dbdata:/var/lib/mysql
environment:
MYSQL_DATABASE: homestead
MYSQL_USER: homestead
MYSQL_PASSWORD: secret
MYSQL_ROOT_PASSWORD: secret
ports:
- ${MYSQL_SERVER_PORT}:3306
phpmyadmin:
image: phpmyadmin/phpmyadmin
ports:
- ${PHPMYADMIN_SERVER_PORT}:80
links:
- database:homestead
environment:
MYSQL_ROOT_PASSWORD: secret
PMA_HOST: homestead
extra_hosts:
${COMPOSE_PROJECT_NAME}.127.0.0.1.xip.io: 127.0.0.1
${COMPOSE_PROJECT_NAME}.127.0.0.1.nip.io: 127.0.0.1
redis:
build:
context: ./
dockerfile: redis.Dockerfile
volumes:
dbdata: