-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
58 lines (53 loc) · 1.07 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:
db:
image: mariadb:latest
command: --max_allowed_packet=1073741824
environment:
MYSQL_DATABASE: prog2053-proj
MYSQL_USER: admin
MYSQL_PASSWORD: password
MYSQL_ROOT_PASSWORD: password
volumes:
- ./dbInit:/docker-entrypoint-initdb.d:Z
- persistent:/var/lib/mysql
networks:
- default
phpmyadmin:
image: phpmyadmin/phpmyadmin
ports:
- 8082:80
environment:
MYSQL_USER: admin
MYSQL_PASSWORD: password
MYSQL_ROOT_PASSWORD: password
PMA_HOST: db
volumes:
- ./uploads.ini:/usr/local/etc/php/conf.d/uploads.ini:Z
networks:
- default
server:
build:
context: .
dockerfile: Dockerfile.nodejs
image: nodejs
ports:
- 8081:8081
volumes:
- ./server:/server:Z
networks:
- default
links:
- db:db
client:
build:
context: .
dockerfile: Dockerfile.client
ports:
- 8080:8080
volumes:
- ./client:/client:Z
networks:
- default
volumes:
persistent: