-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
44 lines (44 loc) · 917 Bytes
/
docker-compose.yml
File metadata and controls
44 lines (44 loc) · 917 Bytes
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
version: '3.8'
services:
socket:
depends_on:
- db
image: docker.pkg.github.com/quickplaymod/quickplay-socket-official/quickplay-socket
ports:
- "54678:80"
restart: unless-stopped
env_file:
- socket.env
proxy:
image: quickplaymod/quickplay-asset-proxy
ports:
- "32182:80"
restart: unless-stopped
depends_on:
- redis
env_file:
- .env
redis:
image: redis:6
restart: unless-stopped
volumes:
- ./redis-data:/var/lib/redis
db:
image: mysql:8
command: --default-authentication-plugin=mysql_native_password
restart: unless-stopped
volumes:
- ./db-data:/var/lib/mysql
env_file:
- docker-db.env
portal:
image: quickplaymod/quickplay-portal
depends_on:
- db
- redis
- socket
ports:
- "43515:80"
restart: unless-stopped
env_file:
- portal.env