Skip to content
This repository was archived by the owner on Feb 21, 2023. It is now read-only.

Commit ed10a84

Browse files
committed
chore: update docker build output
1 parent 5dac944 commit ed10a84

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

scripts/buildDocker.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
const exec = require('execa');
22
const version = require('../package.json').version;
33
const path = require('path');
4+
const kleur = require('kleur');
45

56
const tagName = `moonrailgun/tailchat-server:${version}`;
67

@@ -13,7 +14,10 @@ exec('docker', ['build', '.', '-t', tagName], {
1314
})
1415
.then(() => {
1516
console.log('Build docker image succeed!');
16-
console.log(`Push with command: docker push ${tagName}`);
17+
console.log(
18+
'Push docker image with command: ' +
19+
kleur.bold().bgBlue().white(`docker push ${tagName}`)
20+
);
1721
})
1822
.catch((err) => {
1923
console.error(err);

scripts/k8s/network.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,6 @@ spec:
6464
type: Recreate
6565
template:
6666
metadata:
67-
annotations:
68-
kompose.cmd: kompose convert
69-
kompose.version: 1.24.0 (HEAD)
7067
labels:
7168
com.msgbyte.tailchat.k8s.network/default: "true"
7269
com.msgbyte.tailchat.k8s.network/internal: "true"

0 commit comments

Comments
 (0)