Skip to content
This repository was archived by the owner on Apr 13, 2020. It is now read-only.

Commit 01c4f28

Browse files
Capture docker version in an env var while launching dashboard (#522)
Co-authored-by: Dennis Seah <[email protected]>
1 parent 5d1904c commit 01c4f28

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/commands/deployment/dashboard.ts

+3
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,9 @@ export const getEnvVars = async (
213213
}
214214
}
215215

216+
envVars.push("-e");
217+
envVars.push(`REACT_APP_DOCKER_VERSION=${config.image}`);
218+
216219
return envVars;
217220
} catch (err) {
218221
throw buildError(

0 commit comments

Comments
 (0)