Skip to content

Commit 8c9656e

Browse files
committed
fix: update Docker configurations to enable HTML and JS minification options
1 parent df032c9 commit 8c9656e

13 files changed

+32
-10
lines changed

misc/dev/docker-compose.all-in-one.autoconf.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ services:
44
context: ../..
55
dockerfile: ./src/all-in-one/Dockerfile
66
args:
7-
SKIP_MINIFY: "yes"
7+
SKIP_MINIFY_JS: "yes"
8+
SKIP_MINIFY_HTML: "yes"
89
ports:
910
- 80:8080/tcp
1011
- 443:8443/tcp

misc/dev/docker-compose.all-in-one.ui.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ services:
44
context: ../..
55
dockerfile: ./src/all-in-one/Dockerfile
66
args:
7-
SKIP_MINIFY: "yes"
7+
SKIP_MINIFY_JS: "yes"
8+
SKIP_MINIFY_HTML: "yes"
89
ports:
910
- 80:8080/tcp
1011
- 443:8443/tcp

misc/dev/docker-compose.all-in-one.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ services:
44
context: ../..
55
dockerfile: ./src/all-in-one/Dockerfile
66
args:
7-
SKIP_MINIFY: "yes"
7+
SKIP_MINIFY_JS: "yes"
8+
SKIP_MINIFY_HTML: "yes"
89
ports:
910
- 80:8080/tcp
1011
- 443:8443/tcp

misc/dev/docker-compose.autoconf.misc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ services:
1010
build:
1111
context: ../..
1212
dockerfile: ./src/bw/Dockerfile
13+
args:
14+
SKIP_MINIFY_HTML: "yes"
1315
ports:
1416
- 80:8080/tcp
1517
- 443:8443/tcp

misc/dev/docker-compose.autoconf.ui.misc.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ services:
1010
build:
1111
context: ../..
1212
dockerfile: ./src/bw/Dockerfile
13+
args:
14+
SKIP_MINIFY_HTML: "yes"
1315
ports:
1416
- 80:8080/tcp
1517
- 443:8443/tcp
@@ -104,7 +106,7 @@ services:
104106
context: ../..
105107
dockerfile: ./src/ui/Dockerfile
106108
args:
107-
SKIP_MINIFY: "yes"
109+
SKIP_MINIFY_JS: "yes"
108110
ports:
109111
- 7000:7000
110112
volumes:

misc/dev/docker-compose.autoconf.ui.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ services:
1010
build:
1111
context: ../..
1212
dockerfile: ./src/bw/Dockerfile
13+
args:
14+
SKIP_MINIFY_HTML: "yes"
1315
ports:
1416
- 80:8080/tcp
1517
- 443:8443/tcp
@@ -101,7 +103,7 @@ services:
101103
context: ../..
102104
dockerfile: ./src/ui/Dockerfile
103105
args:
104-
SKIP_MINIFY: "yes"
106+
SKIP_MINIFY_JS: "yes"
105107
ports:
106108
- 7000:7000
107109
volumes:

misc/dev/docker-compose.autoconf.wizard.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ services:
1010
build:
1111
context: ../..
1212
dockerfile: ./src/bw/Dockerfile
13+
args:
14+
SKIP_MINIFY_HTML: "yes"
1315
ports:
1416
- 80:8080/tcp
1517
- 443:8443/tcp
@@ -102,7 +104,7 @@ services:
102104
context: ../..
103105
dockerfile: ./src/ui/Dockerfile
104106
args:
105-
SKIP_MINIFY: "yes"
107+
SKIP_MINIFY_JS: "yes"
106108
ports:
107109
- 7000:7000
108110
volumes:

misc/dev/docker-compose.autoconf.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ services:
1010
build:
1111
context: ../..
1212
dockerfile: ./src/bw/Dockerfile
13+
args:
14+
SKIP_MINIFY_HTML: "yes"
1315
ports:
1416
- 80:8080/tcp
1517
- 443:8443/tcp

misc/dev/docker-compose.misc.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ services:
33
build:
44
context: ../..
55
dockerfile: ./src/bw/Dockerfile
6+
args:
7+
SKIP_MINIFY_HTML: "yes"
68
ports:
79
- 80:8080/tcp
810
- 443:8443/tcp

misc/dev/docker-compose.ui.misc.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ services:
88
build:
99
context: ../..
1010
dockerfile: ./src/bw/Dockerfile
11+
args:
12+
SKIP_MINIFY_HTML: "yes"
1113
ports:
1214
- 80:8080/tcp
1315
- 443:8443/tcp
@@ -81,7 +83,7 @@ services:
8183
context: ../..
8284
dockerfile: ./src/ui/Dockerfile
8385
args:
84-
SKIP_MINIFY: "yes"
86+
SKIP_MINIFY_JS: "yes"
8587
ports:
8688
- 7000:7000
8789
volumes:

0 commit comments

Comments
 (0)