forked from icd/screenshot-service
15 lines
256 B
JavaScript
15 lines
256 B
JavaScript
const IMAGE_NAME = "headless-fox";
|
|
|
|
const VOLUME_MOUNT = `${process.cwd()}/static:/opt/static`;
|
|
|
|
const DOCKER_ARGS = [
|
|
"run",
|
|
"-i",
|
|
"-v",
|
|
VOLUME_MOUNT,
|
|
IMAGE_NAME,
|
|
"./script3.sh",
|
|
];
|
|
|
|
module.exports = { DOCKER_ARGS, IMAGE_NAME, VOLUME_MOUNT };
|