mirror of
https://github.com/louislam/dockge.git
synced 2025-08-15 10:52:59 +02:00
Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
9bde02faf6 | |||
0f52bb78b8 |
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
A fancy, easy-to-use and reactive self-hosted docker compose.yaml stack-oriented manager.
|
A fancy, easy-to-use and reactive self-hosted docker compose.yaml stack-oriented manager.
|
||||||
|
|
||||||
      
|
   
|
||||||
|
|
||||||
<img src="https://github.com/louislam/dockge/assets/1336778/26a583e1-ecb1-4a8d-aedf-76157d714ad7" width="900" alt="" />
|
<img src="https://github.com/louislam/dockge/assets/1336778/26a583e1-ecb1-4a8d-aedf-76157d714ad7" width="900" alt="" />
|
||||||
|
|
||||||
|
@ -385,7 +385,11 @@ function traverseYAML(pair : Pair, env : DotenvParseOutput) : void {
|
|||||||
if (item instanceof Pair) {
|
if (item instanceof Pair) {
|
||||||
traverseYAML(item, env);
|
traverseYAML(item, env);
|
||||||
} else if (item instanceof Scalar) {
|
} else if (item instanceof Scalar) {
|
||||||
item.value = envsubst(item.value, env);
|
let value = item.value as unknown;
|
||||||
|
|
||||||
|
if (typeof(value) === "string") {
|
||||||
|
item.value = envsubst(value, env);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// @ts-ignore
|
// @ts-ignore
|
||||||
|
Reference in New Issue
Block a user