mirror of
https://github.com/karl0ss/homepage.git
synced 2025-05-06 23:33:41 +01:00
36 lines
875 B
JavaScript
36 lines
875 B
JavaScript
import path from "path";
|
|
import { readFileSync } from "fs";
|
|
|
|
import yaml from "js-yaml";
|
|
|
|
import checkAndCopyConfig from "utils/config";
|
|
|
|
export default function getDockerArguments(server) {
|
|
checkAndCopyConfig("docker.yaml");
|
|
|
|
const configFile = path.join(process.cwd(), "config", "docker.yaml");
|
|
const configData = readFileSync(configFile, "utf8");
|
|
const servers = yaml.load(configData);
|
|
|
|
if (!server) {
|
|
if (process.platform !== "win32" && process.platform !== "darwin") {
|
|
return { socketPath: "/var/run/docker.sock" };
|
|
}
|
|
|
|
return { host: "127.0.0.1" };
|
|
}
|
|
|
|
if (servers[server]) {
|
|
if (servers[server].socket) {
|
|
return { socketPath: servers[server].socket };
|
|
}
|
|
|
|
if (servers[server].host) {
|
|
return { host: servers[server].host, port: servers[server].port || null };
|
|
}
|
|
|
|
return servers[server];
|
|
}
|
|
return null;
|
|
}
|