UNPKG

@aivec/wp-docker-dev-factory

Version:

Spin up local WordPress environments with Docker.

7 lines (5 loc) 234 B
import { execp } from '../utils'; import { PromiseWithChild } from 'child_process'; export const load = (imagePath: string): PromiseWithChild<{ stdout: string; stderr: string }> => { return execp(`docker load -i ${imagePath}`); };