-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
42 lines (36 loc) Β· 843 Bytes
/
docker-compose.yml
File metadata and controls
42 lines (36 loc) Β· 843 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
version: '3.3'
services:
db:
image: mariadb:latest
volumes:
- dbvol:/var/lib/mysql
environment:
MYSQL_ROOT_PASSWORD: quotysco
MYSQL_DATABASE: quotysco
MYSQL_USER: quotysco
MYSQL_PASSWORD: quotysco
quotysco:
depends_on:
- db
image: interaapps/quotysco:latest
ports:
- "9999:80"
environment:
HTTP_SERVER_PORT: 80
HTTP_SERVER_CORS: "*"
DATABASE_DRIVER: mysql
DATABASE_NAME: quotysco
DATABASE_USER: quotysco
DATABASE_PASSWORD: quotysco
DATABASE_HOST: db
DATABASE_PORT: 3306
SERVER_NAME: "http://localhost:9999"
IA_OAUTH2_CLIENT_ID:
IA_OAUTH2_CLIENT_SECRET:
FTP_URL:
FTP_HOST:
FTP_USER:
FTP_PASSWORD:
FTP_BASE_DIR:
volumes:
dbvol: