0
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-11-28 10:36:39 +01:00
uptime-kuma/extra/release/nightly.mjs
2024-10-29 19:02:49 +08:00

17 lines
457 B
JavaScript

import { buildDist, buildImage, checkDocker, getRepoName } from "./lib.mjs";
// Docker Hub repository name
const repoName = getRepoName();
// Check if docker is running
checkDocker();
// Build frontend dist (it will build on the host machine, TODO: build on a container?)
buildDist();
// Build full image (rootless)
buildImage(repoName, [ "nightly2-rootless" ], "nightly-rootless");
// Build full image
buildImage(repoName, [ "nightly2" ], "nightly");