-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
50 lines (46 loc) · 966 Bytes
/
docker-compose.yml
File metadata and controls
50 lines (46 loc) · 966 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
45
46
47
48
49
50
version: '3.8'
services:
db:
image: mariadb:10.5
restart: always
volumes:
- ./mariadb:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: gAYpHYhE23j4Qu
MYSQL_DATABASE: area51
MYSQL_USER: area51
MYSQL_PASSWORD: bD8TEW2iwL6WbK
ports:
- 3306:3306
server:
image: area51/server:latest
build: ./server
restart: always
ports:
- 8080:8080
depends_on:
- db
environment:
- TZ=Europe/Paris
- DB_HOST=db
- DB_PORT=3306
- DB_NAME=area51
- DB_USER=area51
- DB_PASSWORD=bD8TEW2iwL6WbK
- SERVER_BASE_URL=http://localhost:8080
web:
image: area51/web:latest
build: ./web
restart: always
ports:
- 8081:8081
depends_on:
- server
volumes:
- ./apk/app.apk:/app/public/apk/app.apk
mobile:
image: area51/mobile:latest
build: ./mobile/Area51
restart: always
volumes:
- ./apk:/output