-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathautomated_builds.log
1084 lines (924 loc) · 36.5 KB
/
automated_builds.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
BUILD 1534223435 (Tue Aug 14 13:10:35 HKT 2018)
> Running "installDist" in tgm-main-cli...
:clean
BUILD SUCCESSFUL in 2s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-cli/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 14s
5 actionable tasks: 5 executed
> Components in tgm-main-cli:
tgm-cli master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-ui master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-cli 0.0.1
tgm-monitor master-SNAPSHOT
tgm-servicelocator 0.0.1
> Copying tgm-main-cli/build/install/tgm-main-cli to bundle-cli...
> Building Docker image weibeld/tg-monitor:cli-0.0.1 in bundle-cli...
Sending build context to Docker daemon 939.5kB
Step 1/4 : FROM weibeld/tg-monitor:base
base: Pulling from weibeld/tg-monitor
8e3ba11ec2a2: Already exists
cf6db8ae1697: Already exists
Digest: sha256:0dfd281a147c1eb9c7e5cb7eca399013e0eaf741aee25fb1fdabde563977adf3
Status: Downloaded newer image for weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
Removing intermediate container 33db9ec1619a
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-cli .
---> 42c72424ab42
Step 4/4 : CMD ./bin/tgm-main-cli
---> Running in fe1f0be68cfe
Removing intermediate container fe1f0be68cfe
---> 8d75a3f5e537
Successfully built 8d75a3f5e537
Successfully tagged weibeld/tg-monitor:cli-0.0.1
> Pushing Docker image weibeld/tg-monitor:cli-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
9b53c9e06bbd: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
3950338e1e6a: Layer already exists
73046094a9b8: Layer already exists
9b53c9e06bbd: Pushed
cli-0.0.1: digest: sha256:fc5ddc3e21eeee7e2a3cc9ed1eb258736edc6013bb009a59595844f9b7f193e5 size: 950
BUILD 1534224973 (Tue Aug 14 13:36:13 HKT 2018)
> Running "installDist" in tgm-main-cli...
:clean
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-cli/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/tgm-ipc-ui-master-1c80c30eae-1.jar
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 29s
5 actionable tasks: 5 executed
> Components in tgm-main-cli:
tgm-cli master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-ui master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-cli 0.0.1
tgm-monitor master-SNAPSHOT
tgm-servicelocator 0.0.1
> Copying tgm-main-cli/build/install/tgm-main-cli to bundle-cli...
> Building Docker image weibeld/tg-monitor:cli-0.0.1 in bundle-cli...
Sending build context to Docker daemon 1.747MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-cli .
---> 1615b4bd9f2a
Step 4/4 : CMD ./bin/tgm-main-cli
---> Running in b4daa969d79a
Removing intermediate container b4daa969d79a
---> f38e06d51bd0
Successfully built f38e06d51bd0
Successfully tagged weibeld/tg-monitor:cli-0.0.1
> Pushing Docker image weibeld/tg-monitor:cli-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
8740a26afc94: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
73046094a9b8: Layer already exists
3950338e1e6a: Layer already exists
8740a26afc94: Pushed
cli-0.0.1: digest: sha256:18b18a3e90d1280648ef300ac62eec8deb37293fec7dfa94b0bb252067420371 size: 950
BUILD 1534225256 (Tue Aug 14 13:40:56 HKT 2018)
> Running "installDist" in tgm-main-cli...
:clean
BUILD SUCCESSFUL in 0s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-cli/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 13s
5 actionable tasks: 5 executed
> Components in tgm-main-cli:
tgm-cli master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-ui master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-cli 0.0.1
tgm-monitor master-SNAPSHOT
tgm-servicelocator 0.0.1
> Copying tgm-main-cli/build/install/tgm-main-cli to bundle-cli...
> Building Docker image weibeld/tg-monitor:cli-0.0.1 in bundle-cli...
Sending build context to Docker daemon 1.772MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-cli .
---> c9db66f42766
Step 4/4 : CMD ./bin/tgm-main-cli
---> Running in 3e1c60e7f55b
Removing intermediate container 3e1c60e7f55b
---> 72792b8c06a6
Successfully built 72792b8c06a6
Successfully tagged weibeld/tg-monitor:cli-0.0.1
> Pushing Docker image weibeld/tg-monitor:cli-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
e5ca896c8621: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
73046094a9b8: Layer already exists
3950338e1e6a: Layer already exists
e5ca896c8621: Pushed
cli-0.0.1: digest: sha256:5157733a2e54719aa85673c2d806d8a316affb4b884fa15cb6b1adc37906eeac size: 950
BUILD 1534226287 (Tue Aug 14 13:58:07 HKT 2018)
> Running "installDist" in tgm-main-cli...
:clean
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-cli/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 16s
5 actionable tasks: 5 executed
> Components in tgm-main-cli:
tgm-cli master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-ui master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-cli 0.0.1
tgm-monitor master-SNAPSHOT
tgm-servicelocator 0.0.1
> Copying tgm-main-cli/build/install/tgm-main-cli to bundle-cli...
> Building Docker image weibeld/tg-monitor:cli-0.0.1 in bundle-cli...
Sending build context to Docker daemon 1.785MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-cli .
---> a86cbcfb1f3b
Step 4/4 : CMD ./bin/tgm-main-cli
---> Running in 9ece43e78963
Removing intermediate container 9ece43e78963
---> 6bbfbe7b1431
Successfully built 6bbfbe7b1431
Successfully tagged weibeld/tg-monitor:cli-0.0.1
> Pushing Docker image weibeld/tg-monitor:cli-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
7eee64d0740b: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
73046094a9b8: Layer already exists
3950338e1e6a: Layer already exists
7eee64d0740b: Pushed
cli-0.0.1: digest: sha256:1c5a19f1e36c69fb2cbde62ff696d18aa244936d0386043c96fa14a6ae80b9fe size: 950
BUILD 1534226871 (Tue Aug 14 14:07:51 HKT 2018)
> Running "installDist" in tgm-main-cli...
:clean
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-cli/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 13s
5 actionable tasks: 5 executed
> Components in tgm-main-cli:
tgm-cli master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-ui master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-cli 0.0.1
tgm-monitor master-SNAPSHOT
tgm-servicelocator 0.0.1
> Copying tgm-main-cli/build/install/tgm-main-cli to bundle-cli...
> Building Docker image weibeld/tg-monitor:cli-0.0.1 in bundle-cli...
Sending build context to Docker daemon 1.798MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-cli .
---> 3e682111bba0
Step 4/4 : CMD ./bin/tgm-main-cli
---> Running in a59cc52018ce
Removing intermediate container a59cc52018ce
---> 0dff2cf43e00
Successfully built 0dff2cf43e00
Successfully tagged weibeld/tg-monitor:cli-0.0.1
> Pushing Docker image weibeld/tg-monitor:cli-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
9c63750a67fa: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
3950338e1e6a: Layer already exists
73046094a9b8: Layer already exists
9c63750a67fa: Pushed
cli-0.0.1: digest: sha256:559aaf1f31ac52e0247fd0231cd527e402d9e7ba652c4a2ee70915799a1eb7d5 size: 950
BUILD 1534231797 (Tue Aug 14 15:29:57 HKT 2018)
> Running "installDist" in tgm-main-cli...
:clean
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/tgm-ipc-ui-master-af3f4a7ffd-1.pom
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-cli/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/tgm-ipc-ui-master-af3f4a7ffd-1.jar
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 38s
5 actionable tasks: 5 executed
> Components in tgm-main-cli:
tgm-cli master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-ui master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-cli 0.0.1
tgm-monitor master-SNAPSHOT
tgm-servicelocator 0.0.1
> Copying tgm-main-cli/build/install/tgm-main-cli to bundle-cli...
> Building Docker image weibeld/tg-monitor:cli-0.0.1 in bundle-cli...
Sending build context to Docker daemon 1.817MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-cli .
---> 7180a6305b85
Step 4/4 : CMD ./bin/tgm-main-cli
---> Running in 38882a879908
Removing intermediate container 38882a879908
---> fdaaf13683a7
Successfully built fdaaf13683a7
Successfully tagged weibeld/tg-monitor:cli-0.0.1
> Pushing Docker image weibeld/tg-monitor:cli-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
88f0e40a8345: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
3950338e1e6a: Layer already exists
73046094a9b8: Layer already exists
88f0e40a8345: Pushed
cli-0.0.1: digest: sha256:5ff9ce346553e0093143421b4da1e7eb19cd736a78413d6baa9dd93ff6faebe9 size: 950
BUILD 1534232777 (Tue Aug 14 15:46:17 HKT 2018)
> Running "installDist" in tgm-main-cli...
:clean
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-cli/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/tgm-ipc-ui-master-bb0055e1db-1.jar
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 29s
5 actionable tasks: 5 executed
> Components in tgm-main-cli:
tgm-cli master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-ui master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-cli 0.0.1
tgm-monitor master-SNAPSHOT
tgm-servicelocator 0.0.1
> Copying tgm-main-cli/build/install/tgm-main-cli to bundle-cli...
> Building Docker image weibeld/tg-monitor:cli-0.0.1 in bundle-cli...
Sending build context to Docker daemon 1.844MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-cli .
---> 600edcdc0a0f
Step 4/4 : CMD ./bin/tgm-main-cli
---> Running in fdc2db11127d
Removing intermediate container fdc2db11127d
---> a218f0f5f6e0
Successfully built a218f0f5f6e0
Successfully tagged weibeld/tg-monitor:cli-0.0.1
> Pushing Docker image weibeld/tg-monitor:cli-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
72e8195394fc: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
3950338e1e6a: Layer already exists
73046094a9b8: Layer already exists
72e8195394fc: Pushed
cli-0.0.1: digest: sha256:b5a7b70e7b7f2b527f12231532d4100593dc55eda5aaedbb33de545b82b2b791 size: 950
BUILD 1534233813 (Tue Aug 14 16:03:33 HKT 2018)
> Running "installDist" in tgm-main-cli...
Starting a Gradle Daemon, 1 busy and 2 stopped Daemons could not be reused, use --status for details
:clean
BUILD SUCCESSFUL in 6s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-cli/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/tgm-ipc-ui-master-caeebaba0d-1.jar
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 35s
5 actionable tasks: 5 executed
> Components in tgm-main-cli:
tgm-cli master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-ui master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-cli 0.0.1
tgm-monitor master-SNAPSHOT
tgm-servicelocator 0.0.1
> Copying tgm-main-cli/build/install/tgm-main-cli to bundle-cli...
> Building Docker image weibeld/tg-monitor:cli-0.0.1 in bundle-cli...
Sending build context to Docker daemon 1.874MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-cli .
---> 8fdaacb41115
Step 4/4 : CMD ./bin/tgm-main-cli
---> Running in e01a42be6fec
Removing intermediate container e01a42be6fec
---> 67bde9dce657
Successfully built 67bde9dce657
Successfully tagged weibeld/tg-monitor:cli-0.0.1
> Pushing Docker image weibeld/tg-monitor:cli-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
7c96c4b34c40: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
3950338e1e6a: Layer already exists
73046094a9b8: Layer already exists
7c96c4b34c40: Pushed
cli-0.0.1: digest: sha256:8da552d5f65c98dfa9b2fab8e2d8744b02b659a3ba83482abbe49c804859abc2 size: 950
BUILD 1534235156 (Tue Aug 14 16:25:56 HKT 2018)
> Running "installDist" in tgm-main-cli...
Starting a Gradle Daemon, 1 busy and 4 stopped Daemons could not be reused, use --status for details
:clean
BUILD SUCCESSFUL in 7s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-cli/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-cli/master-SNAPSHOT/tgm-cli-master-0.0.5-g6df3184-12.jar
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 35s
5 actionable tasks: 5 executed
> Components in tgm-main-cli:
tgm-cli master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-ui master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-cli 0.0.1
tgm-monitor master-SNAPSHOT
tgm-servicelocator 0.0.1
> Copying tgm-main-cli/build/install/tgm-main-cli to bundle-cli...
> Building Docker image weibeld/tg-monitor:cli-0.0.1 in bundle-cli...
Sending build context to Docker daemon 1.898MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 59ea23e5a315
Step 3/4 : COPY tgm-main-cli .
---> 0de98da6a8e2
Step 4/4 : CMD ./bin/tgm-main-cli
---> Running in db94d4dd60b6
Removing intermediate container db94d4dd60b6
---> cfe92e90d10e
Successfully built cfe92e90d10e
Successfully tagged weibeld/tg-monitor:cli-0.0.1
> Pushing Docker image weibeld/tg-monitor:cli-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
5f4d3f4bc076: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
3950338e1e6a: Layer already exists
73046094a9b8: Layer already exists
5f4d3f4bc076: Pushed
cli-0.0.1: digest: sha256:15cf78ad4b37a39153210c1019595b9f8d181fe38b734d48b3c35a7b9a3a3d79 size: 950
BUILD 1534237002 (Tue Aug 14 16:56:42 HKT 2018)
> Running "installDist" in tgm-main-cli...
:clean
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-cli/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-cli/master-SNAPSHOT/tgm-cli-master-0.0.5-ga67f448-13.jar
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 31s
5 actionable tasks: 5 executed
> Components in tgm-main-cli:
tgm-cli master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-ui master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-cli 0.0.1
tgm-monitor master-SNAPSHOT
tgm-servicelocator 0.0.1
> Copying tgm-main-cli/build/install/tgm-main-cli to bundle-cli...
> Building Docker image weibeld/tg-monitor:cli-0.0.1 in bundle-cli...
Sending build context to Docker daemon 1.926MB
Step 1/4 : FROM weibeld/tg-monitor:base
Get https://registry-1.docker.io/v2/weibeld/tg-monitor/manifests/base: Service Unavailable
BUILD 1534237207 (Tue Aug 14 17:00:07 HKT 2018)
> Running "installDist" in tgm-main-cli...
:clean
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-cli/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 12s
5 actionable tasks: 5 executed
> Components in tgm-main-cli:
tgm-cli master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-ui master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-cli 0.0.1
tgm-monitor master-SNAPSHOT
tgm-servicelocator 0.0.1
> Copying tgm-main-cli/build/install/tgm-main-cli to bundle-cli...
> Building Docker image weibeld/tg-monitor:cli-0.0.1 in bundle-cli...
Sending build context to Docker daemon 1.927MB
Step 1/4 : FROM weibeld/tg-monitor:base
base: Pulling from weibeld/tg-monitor
8e3ba11ec2a2: Already exists
cf6db8ae1697: Already exists
Digest: sha256:0dfd281a147c1eb9c7e5cb7eca399013e0eaf741aee25fb1fdabde563977adf3
Status: Downloaded newer image for weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
Removing intermediate container 8c88690baba3
---> 7c103313f890
Step 3/4 : COPY tgm-main-cli .
---> 9285a8b1b10c
Step 4/4 : CMD ./bin/tgm-main-cli
---> Running in c219644aef75
Removing intermediate container c219644aef75
---> 5462664f3ed5
Successfully built 5462664f3ed5
Successfully tagged weibeld/tg-monitor:cli-0.0.1
> Pushing Docker image weibeld/tg-monitor:cli-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
5c7993aac0a3: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
73046094a9b8: Layer already exists
3950338e1e6a: Layer already exists
5c7993aac0a3: Pushed
cli-0.0.1: digest: sha256:34195e3f76900088fb09195e873369bc4b4550fd6d30b4a2ec2b65781bacc3cf size: 950
BUILD 1534251433 (Tue Aug 14 20:57:13 HKT 2018)
> Running "installDist" in tgm-main-cli...
:clean
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-cli/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/tgm-ipc-ui-master-20b2e2bf0c-1.jar
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 40s
5 actionable tasks: 5 executed
> Components in tgm-main-cli:
tgm-cli master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-ui master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-cli 0.0.1
tgm-monitor master-SNAPSHOT
tgm-servicelocator 0.0.1
> Copying tgm-main-cli/build/install/tgm-main-cli to bundle-cli...
> Building Docker image weibeld/tg-monitor:cli-0.0.1 in bundle-cli...
Sending build context to Docker daemon 1.949MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 7c103313f890
Step 3/4 : COPY tgm-main-cli .
---> ac4c7a62e196
Step 4/4 : CMD ./bin/tgm-main-cli
---> Running in 5715fd3aab70
Removing intermediate container 5715fd3aab70
---> 4ff8aa5a79fb
Successfully built 4ff8aa5a79fb
Successfully tagged weibeld/tg-monitor:cli-0.0.1
> Pushing Docker image weibeld/tg-monitor:cli-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
695bc993622d: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
3950338e1e6a: Layer already exists
73046094a9b8: Layer already exists
695bc993622d: Pushed
cli-0.0.1: digest: sha256:dee164ac1aee95c804225ba1fc3e24821ab33742acc3ddab3498995f980c78b2 size: 950
BUILD 1534252157 (Tue Aug 14 21:09:17 HKT 2018)
> Running "installDist" in tgm-main-cli...
Starting a Gradle Daemon, 1 busy Daemon could not be reused, use --status for details
:clean
BUILD SUCCESSFUL in 7s
1 actionable task: 1 executed
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/tgm-corefacade-master-0.0.1-gea9f79c-9.pom
Download https://jitpack.io/com/github/tg-monitor/tgm-cli/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/tgm-corefacade-master-0.0.1-gea9f79c-9.jar
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 22s
5 actionable tasks: 5 executed
> Components in tgm-main-cli:
tgm-cli master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-ui master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-cli 0.0.1
tgm-monitor master-SNAPSHOT
tgm-servicelocator 0.0.1
> Copying tgm-main-cli/build/install/tgm-main-cli to bundle-cli...
> Building Docker image weibeld/tg-monitor:cli-0.0.1 in bundle-cli...
Sending build context to Docker daemon 1.972MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> 7c103313f890
Step 3/4 : COPY tgm-main-cli .
---> 1e716dd74013
Step 4/4 : CMD ./bin/tgm-main-cli
---> Running in 6bf1f2dd8550
Removing intermediate container 6bf1f2dd8550
---> 7ee791714f77
Successfully built 7ee791714f77
Successfully tagged weibeld/tg-monitor:cli-0.0.1
> Pushing Docker image weibeld/tg-monitor:cli-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
4080ce5f9c82: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
3950338e1e6a: Layer already exists
4080ce5f9c82: Pushed
73046094a9b8: Pushed
cli-0.0.1: digest: sha256:34b77bcf86490140de4f93f6ec5aec2a150e17434880f169defe61ee72c0717c size: 950
BUILD 1539804022 (Wed Oct 17 21:20:22 CEST 2018)
> Running "installDist" in /Users/dw/Desktop/tg-monitor/tgm-main-cli...
Starting a Gradle Daemon (subsequent builds will be faster)
FAILURE: Build failed with an exception.
* Where:
Build file '/Users/dw/Desktop/tg-monitor/tgm-main-cli/build.gradle' line: 57
* What went wrong:
A problem occurred evaluating root project 'tgm-main-cli'.
> secrets.properties (No such file or directory)
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 7s
BUILD 1539804162 (Wed Oct 17 21:22:42 CEST 2018)
> Running "installDist" in /Users/dw/Desktop/tg-monitor/tgm-main-cli...
No secrets.properties file
:clean
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
No secrets.properties file
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-cli/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 9s
5 actionable tasks: 5 executed
> Components in tgm-main-cli:
tgm-cli master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-ui master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-cli 0.0.1
tgm-monitor master-SNAPSHOT
tgm-servicelocator 0.0.1
> Copying /Users/dw/Desktop/tg-monitor/tgm-main-cli/build/install/tgm-main-cli to /Users/dw/Desktop/tg-monitor/bundle-cli...
> Building Docker image cli-0.0.1 in /Users/dw/Desktop/tg-monitor/bundle-cli...
Sending build context to Docker daemon 2.245MB
Step 1/4 : FROM weibeld/tg-monitor:base
base: Pulling from weibeld/tg-monitor
8e3ba11ec2a2: Already exists
cf6db8ae1697: Already exists
Digest: sha256:0dfd281a147c1eb9c7e5cb7eca399013e0eaf741aee25fb1fdabde563977adf3
Status: Downloaded newer image for weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
Removing intermediate container 01d303ae8fd0
---> aa18ecd41326
Step 3/4 : COPY tgm-main-cli .
---> 147a5171206e
Step 4/4 : CMD ./bin/tgm-main-cli
---> Running in 2b6bb05f8ae7
Removing intermediate container 2b6bb05f8ae7
---> 7fe33dee42c6
Successfully built 7fe33dee42c6
Successfully tagged cli-0.0.1:latest
> Pushing Docker image cli-0.0.1 to Docker Hub...
The push refers to repository [docker.io/library/cli-0.0.1]
bffe8a9da0c4: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
denied: requested access to the resource is denied
BUILD 1539804209 (Wed Oct 17 21:23:29 CEST 2018)
> Running "installDist" in /Users/dw/Desktop/tg-monitor/tgm-main-cli...
No secrets.properties file
:clean
BUILD SUCCESSFUL in 1s
1 actionable task: 1 executed
No secrets.properties file
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-cli/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 7s
5 actionable tasks: 5 executed
> Components in tgm-main-cli:
tgm-cli master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-ui master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-cli 0.0.1
tgm-monitor master-SNAPSHOT
tgm-servicelocator 0.0.1
> Copying /Users/dw/Desktop/tg-monitor/tgm-main-cli/build/install/tgm-main-cli to /Users/dw/Desktop/tg-monitor/bundle-cli...
> Building Docker image cli-0.0.1 in /Users/dw/Desktop/tg-monitor/bundle-cli...
Sending build context to Docker daemon 2.248MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> aa18ecd41326
Step 3/4 : COPY tgm-main-cli .
---> 5d3b29c8f5d5
Step 4/4 : CMD ./bin/tgm-main-cli
---> Running in 573571e49ecd
Removing intermediate container 573571e49ecd
---> 04c505891ad1
Successfully built 04c505891ad1
Successfully tagged cli-0.0.1:latest
> Pushing Docker image cli-0.0.1 to Docker Hub...
The push refers to repository [docker.io/library/cli-0.0.1]
42e965a75cc4: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing
denied: requested access to the resource is denied
BUILD 1539804253 (Wed Oct 17 21:24:13 CEST 2018)
> Running "installDist" in /Users/dw/Desktop/tg-monitor/tgm-main-cli...
No secrets.properties file
:clean
BUILD SUCCESSFUL in 0s
1 actionable task: 1 executed
No secrets.properties file
:compileJava
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-ui/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-corefacade/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-cli/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-ipc-api/master-SNAPSHOT/maven-metadata.xml
Download https://jitpack.io/com/github/tg-monitor/tgm-monitor/master-SNAPSHOT/maven-metadata.xml
:processResources
:classes
:jar
:startScripts
:installDist
BUILD SUCCESSFUL in 9s
5 actionable tasks: 5 executed
> Components in tgm-main-cli:
tgm-cli master-SNAPSHOT
tgm-corefacade master-SNAPSHOT
tgm-entities 0.0.2
tgm-ipc-api master-SNAPSHOT
tgm-ipc-ui master-SNAPSHOT
tgm-logincodeprompt 0.0.1
tgm-main-cli 0.0.1
tgm-monitor master-SNAPSHOT
tgm-servicelocator 0.0.1
> Copying /Users/dw/Desktop/tg-monitor/tgm-main-cli/build/install/tgm-main-cli to /Users/dw/Desktop/tg-monitor/bundle-cli...
> Building Docker image weibeld/tg-monitor:cli-0.0.1 in /Users/dw/Desktop/tg-monitor/bundle-cli...
Sending build context to Docker daemon 2.25MB
Step 1/4 : FROM weibeld/tg-monitor:base
---> e0c521fc96cf
Step 2/4 : WORKDIR /root
---> Using cache
---> aa18ecd41326
Step 3/4 : COPY tgm-main-cli .
---> 404ac358997f
Step 4/4 : CMD ./bin/tgm-main-cli
---> Running in 637367dfdfe8
Removing intermediate container 637367dfdfe8
---> 6974236403a6
Successfully built 6974236403a6
Successfully tagged weibeld/tg-monitor:cli-0.0.1
> Pushing Docker image weibeld/tg-monitor:cli-0.0.1 to Docker Hub...
The push refers to repository [docker.io/weibeld/tg-monitor]
2af6a9da1204: Preparing
3950338e1e6a: Preparing
73046094a9b8: Preparing