mirror of
https://github.com/docker/build-push-action.git
synced 2025-06-15 15:47:12 +02:00
Refactor Docker config
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
This commit is contained in:
@ -1,17 +1,6 @@
|
||||
import fs from 'fs';
|
||||
import path from 'path';
|
||||
import os from 'os';
|
||||
import * as docker from './docker';
|
||||
import * as exec from './exec';
|
||||
|
||||
interface DockerConfig {
|
||||
credsStore?: string;
|
||||
experimental?: string;
|
||||
stackOrchestrator?: string;
|
||||
aliases?: {
|
||||
builder?: string;
|
||||
};
|
||||
}
|
||||
|
||||
export async function isAvailable(): Promise<Boolean> {
|
||||
return await exec.exec(`docker`, ['buildx'], true).then(res => {
|
||||
if (res.stderr != '' && !res.success) {
|
||||
@ -22,15 +11,8 @@ export async function isAvailable(): Promise<Boolean> {
|
||||
}
|
||||
|
||||
export async function isInstalled(): Promise<Boolean> {
|
||||
const dockerHome: string = process.env.DOCKER_CONFIG || path.join(os.homedir(), '.docker');
|
||||
|
||||
const dockerCfgFile: string = path.join(dockerHome, 'config.json');
|
||||
if (!fs.existsSync(dockerCfgFile)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const dockerCfg: DockerConfig = JSON.parse(fs.readFileSync(dockerCfgFile, {encoding: 'utf-8'}));
|
||||
return dockerCfg.aliases?.builder == 'buildx';
|
||||
const dockerCfg = await docker.config();
|
||||
return dockerCfg?.aliases?.builder == 'buildx';
|
||||
}
|
||||
|
||||
export async function use(builder: string): Promise<void> {
|
||||
|
Reference in New Issue
Block a user