Skip to content

Commit a7d7c98

Browse files
Merge branch 'feature/docker-enhancement' into develop
2 parents 09b5350 + e6b0f8a commit a7d7c98

File tree

10 files changed

+12
-3
lines changed

10 files changed

+12
-3
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
VUE_APP_PACKAGE_JSON=''
33

44
# TAG must be corresponding with the version tag in package.json, need to modify it when new version releases
5-
TAG=1.2.0
5+
TAG=1.3.0-beta

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ Here is the highlights of **TypeScript Playground**:
2323
4. Docker support.
2424
5. Multi-environment support.
2525
6. NGINX Gzip support.
26+
6. Support `Dark` / `Light` color scheme. Self-adaptive color scheme change.
2627

2728
## Usage
2829

docker-compose.development_docker.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ services:
1212
ENV_ALIAS: dev_dkr
1313
ports:
1414
- 8081:80
15+
volumes:
16+
- /Users/johnny/docker-file-mapping/vuetify-typescript-playground/log:/var/log/nginx

docker-compose.production.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ services:
1212
ENV_ALIAS: prod
1313
ports:
1414
- 8081:80
15+
volumes:
16+
- /Users/johnny/docker-file-mapping/vuetify-typescript-playground/log:/var/log/nginx

docker-compose.stage.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ services:
1212
ENV_ALIAS: stage
1313
ports:
1414
- 8081:80
15+
volumes:
16+
- /Users/johnny/docker-file-mapping/vuetify-typescript-playground/log:/var/log/nginx

docker-compose.test.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,5 @@ services:
1212
ENV_ALIAS: test
1313
ports:
1414
- 8081:80
15+
volumes:
16+
- /Users/johnny/docker-file-mapping/vuetify-typescript-playground/log:/var/log/nginx

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vuetify-typescript-playground",
3-
"version": "1.2.0",
3+
"version": "1.3.0-beta",
44
"license": "Apache-2.0",
55
"description": "Vuetify Typescript Playground",
66
"author": {

public/favicon.ico

-4.19 KB
Binary file not shown.

public/favicon.png

22.7 KB
Loading

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="utf-8">
55
<meta http-equiv="X-UA-Compatible" content="IE=edge">
66
<meta name="viewport" content="width=device-width,initial-scale=1.0">
7-
<link rel="icon" href="<%= BASE_URL %>favicon.ico">
7+
<link rel="icon" href="<%= BASE_URL %>favicon.png">
88
<title>vuetify-typescript-playground</title>
99
</head>
1010
<body>

0 commit comments

Comments
 (0)