Skip to content
This repository was archived by the owner on Sep 1, 2021. It is now read-only.

Commit 6bfbb33

Browse files
https://github.com/mysqljs/mysql/issues/2013
1 parent e216d31 commit 6bfbb33

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

docker/dev/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ services:
2020
- 3000:3000
2121

2222
db:
23-
image: mysql
23+
image: mysql:5.7
2424
container_name: gymsystems_db
2525
restart: unless-stopped
2626
environment:

docker/docker-cloud.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ db:
1212
- MYSQL_PASSWORD=admin
1313
- MYSQL_ROOT_PASSWORD=root
1414
- MYSQL_USER=system
15-
image: 'mysql:latest'
15+
image: 'mysql:5.7'
1616
restart: on-failure
1717
volumes:
1818
- '/usr/src/app/data:/var/lib/mysql'

docker/prod/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ services:
4040
- ../../media:/usr/src/app/media
4141

4242
db:
43-
image: mysql
43+
image: mysql:5.7
4444
container_name: gymsystems_db
4545
restart: unless-stopped
4646
environment:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@
170170
"karma-cli": "1.0.1",
171171
"karma-coverage-istanbul-reporter": "1.4.2",
172172
"karma-jasmine": "1.1.2",
173-
"karma-jasmine-html-reporter": "1.0.0",
173+
"karma-jasmine-html-reporter": "1.1.0",
174174
"karma-spec-reporter": "0.0.32",
175175
"nodemon": "1.17.4",
176176
"protractor": "5.3.2",

src/client/tsconfig.app.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,7 @@
44
"outDir": "../../out-tsc/app",
55
"module": "es2015",
66
"types": [],
7-
"baseUrl": "./",
8-
"paths": {
9-
"app/*": ["./app/*"]
10-
}
7+
"baseUrl": "./"
118
},
129
"exclude": [
1310
"src/client/test.ts",

tsconfig.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
"lib": [
1717
"es2017",
1818
"dom"
19-
]
19+
],
20+
"paths": {
21+
"app/*": ["./src/client/app/*"]
22+
}
2023
}
2124
}

0 commit comments

Comments
 (0)