mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-23 14:54:05 +00:00
16 lines
462 B
JavaScript
16 lines
462 B
JavaScript
import { buildDist, buildImage, checkDocker, getRepoNames } from "./lib.mjs";
|
|
|
|
// Docker Hub repository name
|
|
const repoNames = getRepoNames();
|
|
|
|
// 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(repoNames, [ "nightly2-rootless" ], "nightly-rootless");
|
|
|
|
// Build full image
|
|
buildImage(repoNames, [ "nightly2" ], "nightly");
|