mirror of https://github.com/Budibase/budibase.git
committed by
GitHub
3 changed files with 51 additions and 0 deletions
@ -0,0 +1,49 @@ |
|||
const fs = require("fs") |
|||
const { execSync } = require("child_process") |
|||
const path = require("path") |
|||
|
|||
const IMAGES = { |
|||
worker: "budibase/worker", |
|||
apps: "budibase/apps", |
|||
proxy: "envoyproxy/envoy:v1.16-latest", |
|||
minio: "minio/minio", |
|||
couch: "ibmcom/couchdb3", |
|||
curl: "curlimages/curl", |
|||
redis: "redis", |
|||
watchtower: "containrrr/watchtower" |
|||
} |
|||
|
|||
const FILES = { |
|||
COMPOSE: "docker-compose.yaml", |
|||
ENVOY: "envoy.yaml" |
|||
} |
|||
|
|||
const OUTPUT_DIR = path.join(__dirname, "../", "bb-airgapped") |
|||
|
|||
function copyFile(file) { |
|||
fs.copyFileSync( |
|||
path.join(__dirname, "../", "../", file), |
|||
path.join(OUTPUT_DIR, file) |
|||
) |
|||
} |
|||
|
|||
// create output dir
|
|||
console.log(`Creating ${OUTPUT_DIR} for build..`) |
|||
fs.rmdirSync(OUTPUT_DIR, { recursive: true }) |
|||
fs.mkdirSync(OUTPUT_DIR) |
|||
|
|||
// package images into tar files
|
|||
for (let image in IMAGES) { |
|||
console.log(`Creating tar for ${image}..`) |
|||
execSync(`docker save ${IMAGES[image]} -o ${OUTPUT_DIR}/${image}.tar`) |
|||
} |
|||
|
|||
// copy config files
|
|||
copyFile(FILES.COMPOSE) |
|||
copyFile(FILES.ENVOY) |
|||
|
|||
// compress
|
|||
execSync(`tar -czf bb-airgapped.tar.gz hosting/scripts/bb-airgapped`) |
|||
|
|||
// clean up
|
|||
fs.rmdirSync(OUTPUT_DIR, { recursive: true }) |
|||
Loading…
Reference in new issue