-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patha2_____OwnCodeLogs_DjangoREST+Docker_.txt
3840 lines (3770 loc) · 264 KB
/
a2_____OwnCodeLogs_DjangoREST+Docker_.txt
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
### FART --- 17 APR 18
Step 5/14 : RUN echo "installed python3..."
---> Using cache
---> 11681c422810
Step 6/14 : RUN apt-get install -y python-pip python-dev build-essential
---> Using cache
---> e5736d40d355
Step 7/14 : WORKDIR ./
---> Using cache
---> d69540b3ed6f
Step 8/14 : COPY requirements.txt ./
---> Using cache
---> 2720b3ff737a
Step 9/14 : RUN pip install -r requirements.txt
---> Using cache
---> 577b7b8ad93a
Step 10/14 : RUN echo "pip installed requirements.txt..."
---> Using cache
---> 9781fbd0c622
Step 11/14 : EXPOSE 8000
---> Using cache
---> 4b29563e9f24
Step 12/14 : RUN pwd
---> Running in c254b6e1ecdf
/
Removing intermediate container c254b6e1ecdf
---> 9f5585537ce2
Step 13/14 : RUN python manage.py migrate
---> Running in 2114652beb42
python: can't open file 'manage.py': [Errno 2] No such file or directory
The command '/bin/sh -c python manage.py migrate' returned a non-zero code: 2
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker build -t ddrohit/dck1 .
Sending build context to Docker daemon 1.861MB
Step 1/15 : FROM ubuntu:xenial
---> c9d990395902
Step 2/15 : RUN apt-get update
---> Using cache
---> 6bc0d0de6516
Step 3/15 : RUN echo "updated the package manager..."
---> Using cache
---> 2fe01c0ad13d
Step 4/15 : RUN apt-get install -y python3 # install python3
---> Using cache
---> cde60d61973a
Step 5/15 : RUN echo "installed python3..."
---> Using cache
---> 11681c422810
Step 6/15 : RUN apt-get install -y python-pip python-dev build-essential
---> Using cache
---> e5736d40d355
Step 7/15 : WORKDIR ./
---> Using cache
---> d69540b3ed6f
Step 8/15 : COPY requirements.txt ./
---> Using cache
---> 2720b3ff737a
Step 9/15 : RUN pip install -r requirements.txt
---> Using cache
---> 577b7b8ad93a
Step 10/15 : RUN echo "pip installed requirements.txt..."
---> Using cache
---> 9781fbd0c622
Step 11/15 : EXPOSE 8000
---> Using cache
---> 4b29563e9f24
Step 12/15 : RUN pwd
---> Using cache
---> 9f5585537ce2
Step 13/15 : RUN ls
---> Running in 85a4ffc05446
bin
boot
dev
etc
home
lib
lib64
media
mnt
opt
proc
requirements.txt
root
run
sbin
srv
sys
tmp
usr
var
Removing intermediate container 85a4ffc05446
---> 754fc165415b
Step 14/15 : RUN python manage.py migrate
---> Running in 1908f31f6727
python: can't open file 'manage.py': [Errno 2] No such file or directory
The command '/bin/sh -c python manage.py migrate' returned a non-zero code: 2
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker build -t ddrohit/dck1 .
[sudo] password for dhankar:
Sorry, try again.
[sudo] password for dhankar:
Sending build context to Docker daemon 1.861MB
Step 1/16 : FROM ubuntu:xenial
---> c9d990395902
Step 2/16 : RUN apt-get update
---> Using cache
---> 6bc0d0de6516
Step 3/16 : RUN echo "updated the package manager..."
---> Using cache
---> 2fe01c0ad13d
Step 4/16 : RUN apt-get install -y python3 # install python3
---> Using cache
---> cde60d61973a
Step 5/16 : RUN echo "installed python3..."
---> Using cache
---> 11681c422810
Step 6/16 : RUN apt-get install -y python-pip python-dev build-essential
---> Using cache
---> e5736d40d355
Step 7/16 : WORKDIR ./
---> Using cache
---> d69540b3ed6f
Step 8/16 : COPY requirements.txt ./
---> Using cache
---> 2720b3ff737a
Step 9/16 : RUN pip install -r requirements.txt
---> Using cache
---> 577b7b8ad93a
Step 10/16 : RUN echo "pip installed requirements.txt..."
---> Using cache
---> 9781fbd0c622
Step 11/16 : EXPOSE 8000
---> Using cache
---> 4b29563e9f24
Step 12/16 : RUN pwd
---> Using cache
---> 9f5585537ce2
Step 13/16 : RUN ls
---> Using cache
---> 754fc165415b
Step 14/16 : RUN find manage.py
---> Running in 6229b5c2a1e2
find: 'manage.py': No such file or directory
The command '/bin/sh -c find manage.py' returned a non-zero code: 1
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker build -t ddrohit/dck1 .
Sending build context to Docker daemon 1.861MB
Step 1/17 : FROM ubuntu:xenial
---> c9d990395902
Step 2/17 : RUN apt-get update
---> Using cache
---> 6bc0d0de6516
Step 3/17 : RUN echo "updated the package manager..."
---> Using cache
---> 2fe01c0ad13d
Step 4/17 : RUN apt-get install -y python3 # install python3
---> Using cache
---> cde60d61973a
Step 5/17 : RUN echo "installed python3..."
---> Using cache
---> 11681c422810
Step 6/17 : RUN apt-get install -y python-pip python-dev build-essential
---> Using cache
---> e5736d40d355
Step 7/17 : WORKDIR ./
---> Using cache
---> d69540b3ed6f
Step 8/17 : COPY requirements.txt ./
---> Using cache
---> 2720b3ff737a
Step 9/17 : RUN pip install -r requirements.txt
---> Using cache
---> 577b7b8ad93a
Step 10/17 : RUN echo "pip installed requirements.txt..."
---> Using cache
---> 9781fbd0c622
Step 11/17 : EXPOSE 8000
---> Using cache
---> 4b29563e9f24
Step 12/17 : RUN pwd
---> Using cache
---> 9f5585537ce2
Step 13/17 : RUN ls
---> Using cache
---> 754fc165415b
Step 14/17 : RUN find requirements.txt
---> Running in b3a82034046f
requirements.txt
Removing intermediate container b3a82034046f
---> 0d81a8d81b4f
Step 15/17 : RUN find manage.py
---> Running in c9f4231ca79f
find: 'manage.py': No such file or directory
The command '/bin/sh -c find manage.py' returned a non-zero code: 1
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
c9f4231ca79f 0d81a8d81b4f "/bin/sh -c 'find ma…" 12 minutes ago Exited (1) 12 minutes ago upbeat_murdock
6229b5c2a1e2 754fc165415b "/bin/sh -c 'find ma…" 14 minutes ago Exited (1) 14 minutes ago mystifying_jackson
1908f31f6727 754fc165415b "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago modest_leakey
2114652beb42 9f5585537ce2 "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago pedantic_shirley
fa2601fb8002 bc13b1f94fb2 "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago awesome_hodgkin
7c3184b1dcc4 4b29563e9f24 "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago affectionate_mahavira
2c4026fa625a ddrohit/dck1 "python manage.py ru…" About an hour ago Exited (2) About an hour ago dck1
d5cb528230b7 6c5f9deadaa9 "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago sad_cori
c22d41606b1b hello-world "/hello" 7 hours ago Exited (0) 7 hours ago condescending_hoover
44ada9c5e1d3 dhankar/tensorflow-serving-devel "/bin/bash" 11 days ago Exited (0) 11 days ago upbeat_mccarthy
fc107394f848 a01b86204c33 "bash" 3 weeks ago Exited (127) 3 weeks ago stupefied_meitner
8f5ea764d4b7 dd7ddf7eb0f1 "bash" 3 weeks ago Exited (127) 3 weeks ago sleepy_northcutt
82d279189cbf ubuntu "bash" 3 weeks ago Exited (0) 3 weeks ago kind_hugle
91761424a8d7 hello-world "/hello" 3 weeks ago Exited (0) 3 weeks ago focused_chatterjee
74bc5baaad36 c52dc19f7cb8 "/bin/sh -c /start.sh" 3 weeks ago Exited (1) 3 weeks ago gifted_knuth
5adb571f280a c52dc19f7cb8 "/bin/sh -c /start.sh" 3 weeks ago Exited (1) 3 weeks ago nostalgic_kare
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
<none> <none> 0d81a8d81b4f 12 minutes ago 855MB
<none> <none> bc13b1f94fb2 About an hour ago 855MB
ddrohit/dck1 latest 7e7097df2185 About an hour ago 769MB
<none> <none> f460bb313bd8 About an hour ago 448MB
<none> <none> 915a550e0913 2 hours ago 448MB
ubuntu xenial c9d990395902 3 days ago 113MB
dhankar/tensorflow-serving-devel latest 69e7c3fa252a 11 days ago 1.1GB
ubuntu 16.04 f975c5035748 5 weeks ago 112MB
ubuntu latest f975c5035748 5 weeks ago 112MB
hello-world latest f2a91732366c 4 months ago 1.85kB
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker
Usage: docker COMMAND
A self-sufficient runtime for containers
Options:
--config string Location of client config files (default "/home/dhankar/.docker")
-D, --debug Enable debug mode
-H, --host list Daemon socket(s) to connect to
-l, --log-level string Set the logging level ("debug"|"info"|"warn"|"error"|"fatal") (default "info")
--tls Use TLS; implied by --tlsverify
--tlscacert string Trust certs signed only by this CA (default "/home/dhankar/.docker/ca.pem")
--tlscert string Path to TLS certificate file (default "/home/dhankar/.docker/cert.pem")
--tlskey string Path to TLS key file (default "/home/dhankar/.docker/key.pem")
--tlsverify Use TLS and verify the remote
-v, --version Print version information and quit
Management Commands:
config Manage Docker configs
container Manage containers
image Manage images
network Manage networks
node Manage Swarm nodes
plugin Manage plugins
secret Manage Docker secrets
service Manage services
stack Manage Docker stacks
swarm Manage Swarm
system Manage Docker
trust Manage trust on Docker images (experimental)
volume Manage volumes
Commands:
attach Attach local standard input, output, and error streams to a running container
build Build an image from a Dockerfile
commit Create a new image from a container's changes
cp Copy files/folders between a container and the local filesystem
create Create a new container
diff Inspect changes to files or directories on a container's filesystem
events Get real time events from the server
exec Run a command in a running container
export Export a container's filesystem as a tar archive
history Show the history of an image
images List images
import Import the contents from a tarball to create a filesystem image
info Display system-wide information
inspect Return low-level information on Docker objects
kill Kill one or more running containers
load Load an image from a tar archive or STDIN
login Log in to a Docker registry
logout Log out from a Docker registry
logs Fetch the logs of a container
pause Pause all processes within one or more containers
port List port mappings or a specific mapping for the container
ps List containers
pull Pull an image or a repository from a registry
push Push an image or a repository to a registry
rename Rename a container
restart Restart one or more containers
rm Remove one or more containers
rmi Remove one or more images
run Run a command in a new container
save Save one or more images to a tar archive (streamed to STDOUT by default)
search Search the Docker Hub for images
start Start one or more stopped containers
stats Display a live stream of container(s) resource usage statistics
stop Stop one or more running containers
tag Create a tag TARGET_IMAGE that refers to SOURCE_IMAGE
top Display the running processes of a container
unpause Unpause all processes within one or more containers
update Update configuration of one or more containers
version Show the Docker version information
wait Block until one or more containers stop, then print their exit codes
Run 'docker COMMAND --help' for more information on a command.
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
<none> <none> 0d81a8d81b4f 17 minutes ago 855MB
<none> <none> bc13b1f94fb2 About an hour ago 855MB
ddrohit/dck1 latest 7e7097df2185 About an hour ago 769MB
<none> <none> f460bb313bd8 About an hour ago 448MB
<none> <none> 915a550e0913 2 hours ago 448MB
ubuntu xenial c9d990395902 3 days ago 113MB
dhankar/tensorflow-serving-devel latest 69e7c3fa252a 11 days ago 1.1GB
ubuntu 16.04 f975c5035748 5 weeks ago 112MB
ubuntu latest f975c5035748 5 weeks ago 112MB
hello-world latest f2a91732366c 4 months ago 1.85kB
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker rmi -f 0d81a8d81b4f
Deleted: sha256:0d81a8d81b4f1dd5dd20bc692c0439f8342acbfd2e21c10461f0c98058ec7252
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
<none> <none> 754fc165415b About an hour ago 855MB
<none> <none> bc13b1f94fb2 About an hour ago 855MB
ddrohit/dck1 latest 7e7097df2185 About an hour ago 769MB
<none> <none> f460bb313bd8 About an hour ago 448MB
<none> <none> 915a550e0913 2 hours ago 448MB
ubuntu xenial c9d990395902 3 days ago 113MB
dhankar/tensorflow-serving-devel latest 69e7c3fa252a 11 days ago 1.1GB
ubuntu 16.04 f975c5035748 5 weeks ago 112MB
ubuntu latest f975c5035748 5 weeks ago 112MB
hello-world latest f2a91732366c 4 months ago 1.85kB
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker rmi -f 754fc165415b
Deleted: sha256:754fc165415ba8ff2443b6ab3bf50ee5ebca53eaffd5c22b24d5c53397027aac
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
<none> <none> 9f5585537ce2 About an hour ago 855MB
<none> <none> bc13b1f94fb2 About an hour ago 855MB
ddrohit/dck1 latest 7e7097df2185 About an hour ago 769MB
<none> <none> f460bb313bd8 About an hour ago 448MB
<none> <none> 915a550e0913 2 hours ago 448MB
ubuntu xenial c9d990395902 3 days ago 113MB
dhankar/tensorflow-serving-devel latest 69e7c3fa252a 11 days ago 1.1GB
ubuntu 16.04 f975c5035748 5 weeks ago 112MB
ubuntu latest f975c5035748 5 weeks ago 112MB
hello-world latest f2a91732366c 4 months ago 1.85kB
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ ### Need to REMOVE Containers - Not IMAGES
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
c9f4231ca79f 0d81a8d81b4f "/bin/sh -c 'find ma…" 20 minutes ago Exited (1) 20 minutes ago upbeat_murdock
6229b5c2a1e2 754fc165415b "/bin/sh -c 'find ma…" 21 minutes ago Exited (1) 21 minutes ago mystifying_jackson
1908f31f6727 754fc165415b "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago modest_leakey
2114652beb42 9f5585537ce2 "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago pedantic_shirley
fa2601fb8002 bc13b1f94fb2 "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago awesome_hodgkin
7c3184b1dcc4 4b29563e9f24 "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago affectionate_mahavira
2c4026fa625a ddrohit/dck1 "python manage.py ru…" About an hour ago Exited (2) About an hour ago dck1
d5cb528230b7 6c5f9deadaa9 "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago sad_cori
c22d41606b1b hello-world "/hello" 7 hours ago Exited (0) 7 hours ago condescending_hoover
44ada9c5e1d3 dhankar/tensorflow-serving-devel "/bin/bash" 11 days ago Exited (0) 11 days ago upbeat_mccarthy
fc107394f848 a01b86204c33 "bash" 3 weeks ago Exited (127) 3 weeks ago stupefied_meitner
8f5ea764d4b7 dd7ddf7eb0f1 "bash" 3 weeks ago Exited (127) 3 weeks ago sleepy_northcutt
82d279189cbf ubuntu "bash" 3 weeks ago Exited (0) 3 weeks ago kind_hugle
91761424a8d7 hello-world "/hello" 3 weeks ago Exited (0) 3 weeks ago focused_chatterjee
74bc5baaad36 c52dc19f7cb8 "/bin/sh -c /start.sh" 3 weeks ago Exited (1) 3 weeks ago gifted_knuth
5adb571f280a c52dc19f7cb8 "/bin/sh -c /start.sh" 3 weeks ago Exited (1) 3 weeks ago nostalgic_kare
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker rm c9f4231ca79f
c9f4231ca79f
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ #sudo docker rm c9f4231ca79f ## rm NOT rm1 AND CONTAINER ID
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker rm 6229b5c2a1e2
6229b5c2a1e2
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
1908f31f6727 754fc165415b "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago modest_leakey
2114652beb42 9f5585537ce2 "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago pedantic_shirley
fa2601fb8002 bc13b1f94fb2 "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago awesome_hodgkin
7c3184b1dcc4 4b29563e9f24 "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago affectionate_mahavira
2c4026fa625a ddrohit/dck1 "python manage.py ru…" About an hour ago Exited (2) About an hour ago dck1
d5cb528230b7 6c5f9deadaa9 "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago sad_cori
c22d41606b1b hello-world "/hello" 7 hours ago Exited (0) 7 hours ago condescending_hoover
44ada9c5e1d3 dhankar/tensorflow-serving-devel "/bin/bash" 11 days ago Exited (0) 11 days ago upbeat_mccarthy
fc107394f848 a01b86204c33 "bash" 3 weeks ago Exited (127) 3 weeks ago stupefied_meitner
8f5ea764d4b7 dd7ddf7eb0f1 "bash" 3 weeks ago Exited (127) 3 weeks ago sleepy_northcutt
82d279189cbf ubuntu "bash" 3 weeks ago Exited (0) 3 weeks ago kind_hugle
91761424a8d7 hello-world "/hello" 3 weeks ago Exited (0) 3 weeks ago focused_chatterjee
74bc5baaad36 c52dc19f7cb8 "/bin/sh -c /start.sh" 3 weeks ago Exited (1) 3 weeks ago gifted_knuth
5adb571f280a c52dc19f7cb8 "/bin/sh -c /start.sh" 3 weeks ago Exited (1) 3 weeks ago nostalgic_kare
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker rm 1908f31f6727
1908f31f6727
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
<none> <none> 9f5585537ce2 About an hour ago 855MB
<none> <none> bc13b1f94fb2 About an hour ago 855MB
ddrohit/dck1 latest 7e7097df2185 About an hour ago 769MB
<none> <none> f460bb313bd8 About an hour ago 448MB
<none> <none> 915a550e0913 2 hours ago 448MB
ubuntu xenial c9d990395902 3 days ago 113MB
dhankar/tensorflow-serving-devel latest 69e7c3fa252a 11 days ago 1.1GB
ubuntu 16.04 f975c5035748 5 weeks ago 112MB
ubuntu latest f975c5035748 5 weeks ago 112MB
hello-world latest f2a91732366c 4 months ago 1.85kB
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker rm d5cb528230b7 ## name == ddrohit/dck1
d5cb528230b7
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
<none> <none> 9f5585537ce2 About an hour ago 855MB
<none> <none> bc13b1f94fb2 About an hour ago 855MB
ddrohit/dck1 latest 7e7097df2185 About an hour ago 769MB
<none> <none> f460bb313bd8 About an hour ago 448MB
<none> <none> 915a550e0913 2 hours ago 448MB
ubuntu xenial c9d990395902 3 days ago 113MB
dhankar/tensorflow-serving-devel latest 69e7c3fa252a 11 days ago 1.1GB
ubuntu 16.04 f975c5035748 5 weeks ago 112MB
ubuntu latest f975c5035748 5 weeks ago 112MB
hello-world latest f2a91732366c 4 months ago 1.85kB
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
2114652beb42 9f5585537ce2 "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago pedantic_shirley
fa2601fb8002 bc13b1f94fb2 "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago awesome_hodgkin
7c3184b1dcc4 4b29563e9f24 "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago affectionate_mahavira
2c4026fa625a ddrohit/dck1 "python manage.py ru…" About an hour ago Exited (2) About an hour ago dck1
c22d41606b1b hello-world "/hello" 7 hours ago Exited (0) 7 hours ago condescending_hoover
44ada9c5e1d3 dhankar/tensorflow-serving-devel "/bin/bash" 11 days ago Exited (0) 11 days ago upbeat_mccarthy
fc107394f848 a01b86204c33 "bash" 3 weeks ago Exited (127) 3 weeks ago stupefied_meitner
8f5ea764d4b7 dd7ddf7eb0f1 "bash" 3 weeks ago Exited (127) 3 weeks ago sleepy_northcutt
82d279189cbf ubuntu "bash" 3 weeks ago Exited (0) 3 weeks ago kind_hugle
91761424a8d7 hello-world "/hello" 3 weeks ago Exited (0) 3 weeks ago focused_chatterjee
74bc5baaad36 c52dc19f7cb8 "/bin/sh -c /start.sh" 3 weeks ago Exited (1) 3 weeks ago gifted_knuth
5adb571f280a c52dc19f7cb8 "/bin/sh -c /start.sh" 3 weeks ago Exited (1) 3 weeks ago nostalgic_kare
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker rm 2c4026fa625a ## name == ddrohit/dck1
2c4026fa625a
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
2114652beb42 9f5585537ce2 "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago pedantic_shirley
fa2601fb8002 bc13b1f94fb2 "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago awesome_hodgkin
7c3184b1dcc4 4b29563e9f24 "/bin/sh -c 'python …" About an hour ago Exited (2) About an hour ago affectionate_mahavira
c22d41606b1b hello-world "/hello" 7 hours ago Exited (0) 7 hours ago condescending_hoover
44ada9c5e1d3 dhankar/tensorflow-serving-devel "/bin/bash" 11 days ago Exited (0) 11 days ago upbeat_mccarthy
fc107394f848 a01b86204c33 "bash" 3 weeks ago Exited (127) 3 weeks ago stupefied_meitner
8f5ea764d4b7 dd7ddf7eb0f1 "bash" 3 weeks ago Exited (127) 3 weeks ago sleepy_northcutt
82d279189cbf ubuntu "bash" 3 weeks ago Exited (0) 3 weeks ago kind_hugle
91761424a8d7 hello-world "/hello" 3 weeks ago Exited (0) 3 weeks ago focused_chatterjee
74bc5baaad36 c52dc19f7cb8 "/bin/sh -c /start.sh" 3 weeks ago Exited (1) 3 weeks ago gifted_knuth
5adb571f280a c52dc19f7cb8 "/bin/sh -c /start.sh" 3 weeks ago Exited (1) 3 weeks ago nostalgic_kare
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
<none> <none> 9f5585537ce2 About an hour ago 855MB
<none> <none> bc13b1f94fb2 About an hour ago 855MB
ddrohit/dck1 latest 7e7097df2185 About an hour ago 769MB
<none> <none> f460bb313bd8 About an hour ago 448MB
<none> <none> 915a550e0913 2 hours ago 448MB
ubuntu xenial c9d990395902 3 days ago 113MB
dhankar/tensorflow-serving-devel latest 69e7c3fa252a 11 days ago 1.1GB
ubuntu 16.04 f975c5035748 5 weeks ago 112MB
ubuntu latest f975c5035748 5 weeks ago 112MB
hello-world latest f2a91732366c 4 months ago 1.85kB
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker rmi -f 9f5585537ce2
Deleted: sha256:9f5585537ce22a99778d930e9dfde006b0cef92b8a44c2cdc07709c6bf540135
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
<none> <none> bc13b1f94fb2 About an hour ago 855MB
ddrohit/dck1 latest 7e7097df2185 About an hour ago 769MB
<none> <none> f460bb313bd8 About an hour ago 448MB
<none> <none> 915a550e0913 2 hours ago 448MB
ubuntu xenial c9d990395902 3 days ago 113MB
dhankar/tensorflow-serving-devel latest 69e7c3fa252a 11 days ago 1.1GB
ubuntu 16.04 f975c5035748 5 weeks ago 112MB
ubuntu latest f975c5035748 5 weeks ago 112MB
hello-world latest f2a91732366c 4 months ago 1.85kB
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ ## Not sure probably- DELETE Containers before IMAGES
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker rmi -f bc13b1f94fb2
Deleted: sha256:bc13b1f94fb2fe7f23e0e0d643cdd8d33ede04f848dbf53932f0a1e37eabcad5
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker rmi -f 7e7097df2185
Untagged: ddrohit/dck1:latest
Deleted: sha256:7e7097df2185188435be37b4ca932550e9d4565e1a57a3cb35a9ff5a97411452
Deleted: sha256:6c5f9deadaa9a47ae931fbf0e739f6f37236f6671faa42f6d2ff7c6cda659ff6
Deleted: sha256:3a07453ee15f02e9aad6b95d190d8c86c8acb6384eaa610abde4e6e3af0f4590
Deleted: sha256:92c1a55b901d5046d0982e474cfadd6fa12cd1ca7ebb4bb506f73059deae825e
Deleted: sha256:3b8acc6b8bf26be8692f4d3688e8e88341cb0995cf77ec701ddf5f65acd1b911
Deleted: sha256:a1906bf9cd7bca43ee594eae4f4164fee53b2740719cf3e1dc2235334524d389
Deleted: sha256:1c7e536c0c9783f7e6efab289b28b6595c9fdf0b9181ebfd1e8ae84c6c862184
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
<none> <none> 4b29563e9f24 About an hour ago 855MB
<none> <none> f460bb313bd8 2 hours ago 448MB
<none> <none> 915a550e0913 2 hours ago 448MB
ubuntu xenial c9d990395902 3 days ago 113MB
dhankar/tensorflow-serving-devel latest 69e7c3fa252a 11 days ago 1.1GB
ubuntu 16.04 f975c5035748 5 weeks ago 112MB
ubuntu latest f975c5035748 5 weeks ago 112MB
hello-world latest f2a91732366c 4 months ago 1.85kB
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker rmi -f 4b29563e9f24
Deleted: sha256:4b29563e9f24d50399af287ed341299cec6997afdd604b396111fa943b4618dd
Deleted: sha256:9781fbd0c62286e072729c8a88cded056e365d2e083c722bce113407a5546528
Deleted: sha256:577b7b8ad93a1c9588317fcc4c0260a40509f73ad328b50c07cd132c15e5a544
Deleted: sha256:2720b3ff737a8021d1d8de333302bd7dafd7e30affa4f66eeac00040f125be5c
Deleted: sha256:d69540b3ed6f0a626b02b44eb71b584b024e5e864f5328f5706af1dc2ba5a92d
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker rmi -f f460bb313bd8
Deleted: sha256:f460bb313bd8f0447f44856deb7635f1b66e0e452559a2fbee25a9f6a8b7d455
Deleted: sha256:7e275d15a1c33dc288643da5067cdab8b09b4cd99f048e44e994c217125eb91b
Deleted: sha256:30f3aa605e5ea86292a945aa5bac6a3a507c39b2a77441a15d32cbc6c578c724
Deleted: sha256:d4f54003a15cfd72e1dbaabf94be507c26636c7847e55492323b83ca5088b68d
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker rmi -f 915a550e0913
Deleted: sha256:915a550e091308a0726a36f586cc4bbdcdac658c6011986e13611cf415eb1135
Deleted: sha256:5d6a225a0279eb9c60b14f628f7e3ddcfdc9a2d19e8cbe05403f646e77047f1a
Deleted: sha256:e5736d40d355ca31b966f35cd34d01742dd370239f6e8017e7f4691dd3120fa9
Deleted: sha256:11681c4228102818c7bec5aa8591097a956585fe0dfed3ad509f7ed9086b76bd
Deleted: sha256:cde60d61973aa7f3b9d1c4ad0e7c086a0c00a6ac40b360d937da24e36f0e31ae
Deleted: sha256:2fe01c0ad13d9aa2cba53ada7f47ab98fd77e4dd8ee8651b83863b86e26a2965
Deleted: sha256:6bc0d0de65169ead3fadff96dcc81a91f15b2032201da675545c3e4dddec0eb5
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
ubuntu xenial c9d990395902 3 days ago 113MB
dhankar/tensorflow-serving-devel latest 69e7c3fa252a 11 days ago 1.1GB
ubuntu 16.04 f975c5035748 5 weeks ago 112MB
ubuntu latest f975c5035748 5 weeks ago 112MB
hello-world latest f2a91732366c 4 months ago 1.85kB
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ ## Seen above --- IMAGE ID == c9d990395902
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ ## Is the IMAGE ID we are Building upon.
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker build -t ddrohit/dck1 .
[sudo] password for dhankar:
Sending build context to Docker daemon 1.861MB
Step 1/7 : FROM ubuntu:xenial
---> c9d990395902
Step 2/7 : WORKDIR ./
Removing intermediate container 447937e038bd
---> 9ca2e726446e
Step 3/7 : COPY requirements.txt ./
---> 6abc1a176527
Step 4/7 : RUN find requirements.txt
---> Running in 6abb09f2cabb
requirements.txt
Removing intermediate container 6abb09f2cabb
---> b5ad8b0c4c3e
Step 5/7 : COPY manage.py ./
---> 02f2fc59fe60
Step 6/7 : RUN find manage.py
---> Running in 05049ba59682
manage.py
Removing intermediate container 05049ba59682
---> 6ad8541adbb6
Step 7/7 : RUN ls
---> Running in eced3ce51fd5
bin
boot
dev
etc
home
lib
lib64
manage.py
media
mnt
opt
proc
requirements.txt
root
run
sbin
srv
sys
tmp
usr
var
Removing intermediate container eced3ce51fd5
---> 6492e27e3d91
Successfully built 6492e27e3d91
Successfully tagged ddrohit/dck1:latest
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
ddrohit/dck1 latest 6492e27e3d91 8 minutes ago 113MB
ubuntu xenial c9d990395902 3 days ago 113MB
dhankar/tensorflow-serving-devel latest 69e7c3fa252a 11 days ago 1.1GB
ubuntu 16.04 f975c5035748 5 weeks ago 112MB
ubuntu latest f975c5035748 5 weeks ago 112MB
hello-world latest f2a91732366c 4 months ago 1.85kB
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker rmi -f 6492e27e3d91
Untagged: ddrohit/dck1:latest
Deleted: sha256:6492e27e3d91efc75eb08113a95593b38d1674a770b1078dc446ceb45ee2ceae
Deleted: sha256:6ad8541adbb6b17a4518a02c88def997b5f5d563347960e1d8c651e0e06e35bf
Deleted: sha256:02f2fc59fe607156c879dae31efa0903bb6252e5f44f92d59396be016937ad5e
Deleted: sha256:fcfd720e06334c0e03387a6e51a0c55d1a60d2ccae7a8198d7fc3ca38bbfdbd3
Deleted: sha256:b5ad8b0c4c3e5b35348ae289616479e3926e08a9868a62067293e7432264aabb
Deleted: sha256:6abc1a176527de98919651e9d1899101f51a6ec95e2558c560b2a558b0141c55
Deleted: sha256:eb838db9827694128a15a26ccca780fb2b26ae5b10e6ebf96a312cab5161d5f6
Deleted: sha256:9ca2e726446eece653221a84a69f50aaf771f15e9ac5c0c98ad5bd4b27cbfc11
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
ubuntu xenial c9d990395902 3 days ago 113MB
dhankar/tensorflow-serving-devel latest 69e7c3fa252a 11 days ago 1.1GB
ubuntu 16.04 f975c5035748 5 weeks ago 112MB
ubuntu latest f975c5035748 5 weeks ago 112MB
hello-world latest f2a91732366c 4 months ago 1.85kB
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker build -t ddrohit/dck1 .
Sending build context to Docker daemon 1.861MB
Step 1/7 : FROM ubuntu:xenial
---> c9d990395902
Step 2/7 : WORKDIR ./usr/src/rest_api/
Removing intermediate container b9ffc76ab1e4
---> d6a678eac0ff
Step 3/7 : COPY requirements.txt ./usr/src/rest_api/
---> b585588336c7
Step 4/7 : RUN find requirements.txt
---> Running in 81c712aa749a
find: 'requirements.txt': No such file or directory
The command '/bin/sh -c find requirements.txt' returned a non-zero code: 1
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker build -t ddrohit/dck1 .
Sending build context to Docker daemon 1.861MB
Step 1/7 : FROM ubuntu:xenial
---> c9d990395902
Step 2/7 : WORKDIR ./usr/src/rest_api/
---> Using cache
---> d6a678eac0ff
Step 3/7 : COPY requirements.txt ./usr/src/rest_api/requirements.txt
---> f90ec2113b46
Step 4/7 : RUN find requirements.txt
---> Running in ec90c4bd42b2
find: 'requirements.txt': No such file or directory
The command '/bin/sh -c find requirements.txt' returned a non-zero code: 1
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker images
REPOSITORY TAG IMAGE ID CREATED SIZE
<none> <none> f90ec2113b46 About a minute ago 113MB
<none> <none> b585588336c7 2 minutes ago 113MB
ubuntu xenial c9d990395902 3 days ago 113MB
dhankar/tensorflow-serving-devel latest 69e7c3fa252a 11 days ago 1.1GB
ubuntu 16.04 f975c5035748 5 weeks ago 112MB
ubuntu latest f975c5035748 5 weeks ago 112MB
hello-world latest f2a91732366c 4 months ago 1.85kB
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ ls -d */
indexapp/ info2/ static_in_pro/
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker ps -a
[sudo] password for dhankar:
Sorry, try again.
[sudo] password for dhankar:
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
ec90c4bd42b2 f90ec2113b46 "/bin/sh -c 'find re…" 17 minutes ago Exited (1) 17 minutes ago competent_saha
81c712aa749a b585588336c7 "/bin/sh -c 'find re…" 19 minutes ago Exited (1) 19 minutes ago dreamy_johnson
2114652beb42 9f5585537ce2 "/bin/sh -c 'python …" 2 hours ago Exited (2) 2 hours ago pedantic_shirley
fa2601fb8002 bc13b1f94fb2 "/bin/sh -c 'python …" 2 hours ago Exited (2) 2 hours ago awesome_hodgkin
7c3184b1dcc4 4b29563e9f24 "/bin/sh -c 'python …" 2 hours ago Exited (2) 2 hours ago affectionate_mahavira
c22d41606b1b hello-world "/hello" 8 hours ago Exited (0) 8 hours ago condescending_hoover
44ada9c5e1d3 dhankar/tensorflow-serving-devel "/bin/bash" 11 days ago Exited (0) 11 days ago upbeat_mccarthy
fc107394f848 a01b86204c33 "bash" 3 weeks ago Exited (127) 3 weeks ago stupefied_meitner
8f5ea764d4b7 dd7ddf7eb0f1 "bash" 3 weeks ago Exited (127) 3 weeks ago sleepy_northcutt
82d279189cbf ubuntu "bash" 3 weeks ago Exited (0) 3 weeks ago kind_hugle
91761424a8d7 hello-world "/hello" 3 weeks ago Exited (0) 3 weeks ago focused_chatterjee
74bc5baaad36 c52dc19f7cb8 "/bin/sh -c /start.sh" 3 weeks ago Exited (1) 3 weeks ago gifted_knuth
5adb571f280a c52dc19f7cb8 "/bin/sh -c /start.sh" 3 weeks ago Exited (1) 3 weeks ago nostalgic_kare
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ docker exec -t -i dreamy_johnson /bin/bash
Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Get http://%2Fvar%2Frun%2Fdocker.sock/v1.35/containers/dreamy_johnson/json: dial unix /var/run/docker.sock: connect: permission denied
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker exec -t -i dreamy_johnson /bin/bash
Error response from daemon: Container 81c712aa749afb8bfcfd4792e3b52aa4691a4780cd591c0b5f0feb1a15734bd6 is not running
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker exec -t -i competent_saha /bin/bash
Error response from daemon: Container ec90c4bd42b2affac94f0881168e386650e2b9d3454ff0eaa96da0f94e388c2d is not running
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ ## Source --- SO --- https://stackoverflow.com/questions/20813486/exploring-docker-containers-file-system?utm_medium=organic&utm_source=google_rich_qa&utm_campaign=google_rich_qa
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ ## To see DIR Structure within Docker Containers and IMAGES
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker ps
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker ps -a
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
ec90c4bd42b2 f90ec2113b46 "/bin/sh -c 'find re…" 29 minutes ago Exited (1) 29 minutes ago competent_saha
81c712aa749a b585588336c7 "/bin/sh -c 'find re…" 30 minutes ago Exited (1) 30 minutes ago dreamy_johnson
2114652beb42 9f5585537ce2 "/bin/sh -c 'python …" 2 hours ago Exited (2) 2 hours ago pedantic_shirley
fa2601fb8002 bc13b1f94fb2 "/bin/sh -c 'python …" 2 hours ago Exited (2) 2 hours ago awesome_hodgkin
7c3184b1dcc4 4b29563e9f24 "/bin/sh -c 'python …" 2 hours ago Exited (2) 2 hours ago affectionate_mahavira
c22d41606b1b hello-world "/hello" 8 hours ago Exited (0) 8 hours ago condescending_hoover
44ada9c5e1d3 dhankar/tensorflow-serving-devel "/bin/bash" 11 days ago Exited (0) 11 days ago upbeat_mccarthy
fc107394f848 a01b86204c33 "bash" 3 weeks ago Exited (127) 3 weeks ago stupefied_meitner
8f5ea764d4b7 dd7ddf7eb0f1 "bash" 3 weeks ago Exited (127) 3 weeks ago sleepy_northcutt
82d279189cbf ubuntu "bash" 3 weeks ago Exited (0) 3 weeks ago kind_hugle
91761424a8d7 hello-world "/hello" 3 weeks ago Exited (0) 3 weeks ago focused_chatterjee
74bc5baaad36 c52dc19f7cb8 "/bin/sh -c /start.sh" 3 weeks ago Exited (1) 3 weeks ago gifted_knuth
5adb571f280a c52dc19f7cb8 "/bin/sh -c /start.sh" 3 weeks ago Exited (1) 3 weeks ago nostalgic_kare
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ docker run -d -p 22 competent_saha
docker: Got permission denied while trying to connect to the Docker daemon socket at unix:///var/run/docker.sock: Post http://%2Fvar%2Frun%2Fdocker.sock/v1.35/containers/create: dial unix /var/run/docker.sock: connect: permission denied.
See 'docker run --help'.
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker run -d -p 22 competent_saha
Unable to find image 'competent_saha:latest' locally
docker: Error response from daemon: pull access denied for competent_saha, repository does not exist or may require 'docker login'.
See 'docker run --help'.
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker build -t ddrohit/dck1 .
[sudo] password for dhankar:
Sending build context to Docker daemon 1.862MB
Step 1/7 : FROM ubuntu:xenial
---> c9d990395902
Step 2/7 : COPY ./ ./usr/src/rest_api/
---> fb9c1f027d4f
Step 3/7 : WORKDIR ./usr/src/rest_api/
Removing intermediate container 720cbea2b43b
---> 1a2ee464bec9
Step 4/7 : RUN pip install -r ./usr/src/rest_api/requirements.txt
---> Running in 4b06bd483860
/bin/sh: 1: pip: not found
The command '/bin/sh -c pip install -r ./usr/src/rest_api/requirements.txt' returned a non-zero code: 127
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker build -t ddrohit/dck1 .
Sending build context to Docker daemon 1.862MB
Step 1/9 : FROM ubuntu:xenial
---> c9d990395902
Step 2/9 : RUN apt-get install -y python3 # install python3
---> Running in 370b5bdf8331
Reading package lists...
Building dependency tree...
Reading state information...
E: Unable to locate package python3
The command '/bin/sh -c apt-get install -y python3 # install python3' returned a non-zero code: 100
dhankar@dhankar-VPCEB44EN:/media/dhankar/Dhankar_1/a2_18/a2___DC_API/aa___Docker_RESTAPI$ sudo docker build -t ddrohit/dck1 .
Sending build context to Docker daemon 1.862MB
Step 1/10 : FROM ubuntu:xenial
---> c9d990395902
Step 2/10 : RUN apt-get update
---> Running in 189560cf2c3e
Get:1 http://archive.ubuntu.com/ubuntu xenial InRelease [247 kB]
Get:2 http://security.ubuntu.com/ubuntu xenial-security InRelease [102 kB]
Get:3 http://archive.ubuntu.com/ubuntu xenial-updates InRelease [102 kB]
Get:4 http://archive.ubuntu.com/ubuntu xenial-backports InRelease [102 kB]
Get:5 http://archive.ubuntu.com/ubuntu xenial/universe Sources [9802 kB]
Get:6 http://security.ubuntu.com/ubuntu xenial-security/universe Sources [78.5 kB]
Get:7 http://security.ubuntu.com/ubuntu xenial-security/main amd64 Packages [602 kB]
Get:8 http://security.ubuntu.com/ubuntu xenial-security/restricted amd64 Packages [12.7 kB]
Get:9 http://security.ubuntu.com/ubuntu xenial-security/universe amd64 Packages [431 kB]
Get:10 http://security.ubuntu.com/ubuntu xenial-security/multiverse amd64 Packages [3489 B]
Get:11 http://archive.ubuntu.com/ubuntu xenial/main amd64 Packages [1558 kB]
Get:12 http://archive.ubuntu.com/ubuntu xenial/restricted amd64 Packages [14.1 kB]
Get:13 http://archive.ubuntu.com/ubuntu xenial/universe amd64 Packages [9827 kB]
Get:14 http://archive.ubuntu.com/ubuntu xenial/multiverse amd64 Packages [176 kB]
Get:15 http://archive.ubuntu.com/ubuntu xenial-updates/universe Sources [253 kB]
Get:16 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 Packages [979 kB]
Get:17 http://archive.ubuntu.com/ubuntu xenial-updates/restricted amd64 Packages [13.1 kB]
Get:18 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 Packages [799 kB]
Get:19 http://archive.ubuntu.com/ubuntu xenial-updates/multiverse amd64 Packages [18.5 kB]
Get:20 http://archive.ubuntu.com/ubuntu xenial-backports/main amd64 Packages [5153 B]
Get:21 http://archive.ubuntu.com/ubuntu xenial-backports/universe amd64 Packages [7734 B]
Fetched 25.1 MB in 13s (1822 kB/s)
Reading package lists...
Removing intermediate container 189560cf2c3e
---> 42f625ed03cb
Step 3/10 : RUN apt-get install -y python3 # install python3
---> Running in e58f1082483c
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
dh-python file libexpat1 libmagic1 libmpdec2 libpython3-stdlib
libpython3.5-minimal libpython3.5-stdlib libsqlite3-0 libssl1.0.0
mime-support python3-minimal python3.5 python3.5-minimal
Suggested packages:
libdpkg-perl python3-doc python3-tk python3-venv python3.5-venv
python3.5-doc binutils binfmt-support
The following NEW packages will be installed:
dh-python file libexpat1 libmagic1 libmpdec2 libpython3-stdlib
libpython3.5-minimal libpython3.5-stdlib libsqlite3-0 libssl1.0.0
mime-support python3 python3-minimal python3.5 python3.5-minimal
0 upgraded, 15 newly installed, 0 to remove and 5 not upgraded.
Need to get 6431 kB of archives.
After this operation, 33.3 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libssl1.0.0 amd64 1.0.2g-1ubuntu4.11 [1082 kB]
Get:2 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython3.5-minimal amd64 3.5.2-2ubuntu0~16.04.4 [523 kB]
Get:3 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libexpat1 amd64 2.1.0-7ubuntu0.16.04.3 [71.2 kB]
Get:4 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python3.5-minimal amd64 3.5.2-2ubuntu0~16.04.4 [1597 kB]
Get:5 http://archive.ubuntu.com/ubuntu xenial/main amd64 python3-minimal amd64 3.5.1-3 [23.3 kB]
Get:6 http://archive.ubuntu.com/ubuntu xenial/main amd64 mime-support all 3.59ubuntu1 [31.0 kB]
Get:7 http://archive.ubuntu.com/ubuntu xenial/main amd64 libmpdec2 amd64 2.4.2-1 [82.6 kB]
Get:8 http://archive.ubuntu.com/ubuntu xenial/main amd64 libsqlite3-0 amd64 3.11.0-1ubuntu1 [396 kB]
Get:9 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython3.5-stdlib amd64 3.5.2-2ubuntu0~16.04.4 [2132 kB]
Get:10 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python3.5 amd64 3.5.2-2ubuntu0~16.04.4 [165 kB]
Get:11 http://archive.ubuntu.com/ubuntu xenial/main amd64 libpython3-stdlib amd64 3.5.1-3 [6818 B]
Get:12 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 dh-python all 2.20151103ubuntu1.1 [74.1 kB]
Get:13 http://archive.ubuntu.com/ubuntu xenial/main amd64 python3 amd64 3.5.1-3 [8710 B]
Get:14 http://archive.ubuntu.com/ubuntu xenial/main amd64 libmagic1 amd64 1:5.25-2ubuntu1 [216 kB]
Get:15 http://archive.ubuntu.com/ubuntu xenial/main amd64 file amd64 1:5.25-2ubuntu1 [21.2 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 6431 kB in 3s (1688 kB/s)
Selecting previously unselected package libssl1.0.0:amd64.
(Reading database ... 4768 files and directories currently installed.)
Preparing to unpack .../libssl1.0.0_1.0.2g-1ubuntu4.11_amd64.deb ...
Unpacking libssl1.0.0:amd64 (1.0.2g-1ubuntu4.11) ...
Selecting previously unselected package libpython3.5-minimal:amd64.
Preparing to unpack .../libpython3.5-minimal_3.5.2-2ubuntu0~16.04.4_amd64.deb ...
Unpacking libpython3.5-minimal:amd64 (3.5.2-2ubuntu0~16.04.4) ...
Selecting previously unselected package libexpat1:amd64.
Preparing to unpack .../libexpat1_2.1.0-7ubuntu0.16.04.3_amd64.deb ...
Unpacking libexpat1:amd64 (2.1.0-7ubuntu0.16.04.3) ...
Selecting previously unselected package python3.5-minimal.
Preparing to unpack .../python3.5-minimal_3.5.2-2ubuntu0~16.04.4_amd64.deb ...
Unpacking python3.5-minimal (3.5.2-2ubuntu0~16.04.4) ...
Selecting previously unselected package python3-minimal.
Preparing to unpack .../python3-minimal_3.5.1-3_amd64.deb ...
Unpacking python3-minimal (3.5.1-3) ...
Selecting previously unselected package mime-support.
Preparing to unpack .../mime-support_3.59ubuntu1_all.deb ...
Unpacking mime-support (3.59ubuntu1) ...
Selecting previously unselected package libmpdec2:amd64.
Preparing to unpack .../libmpdec2_2.4.2-1_amd64.deb ...
Unpacking libmpdec2:amd64 (2.4.2-1) ...
Selecting previously unselected package libsqlite3-0:amd64.
Preparing to unpack .../libsqlite3-0_3.11.0-1ubuntu1_amd64.deb ...
Unpacking libsqlite3-0:amd64 (3.11.0-1ubuntu1) ...
Selecting previously unselected package libpython3.5-stdlib:amd64.
Preparing to unpack .../libpython3.5-stdlib_3.5.2-2ubuntu0~16.04.4_amd64.deb ...
Unpacking libpython3.5-stdlib:amd64 (3.5.2-2ubuntu0~16.04.4) ...
Selecting previously unselected package python3.5.
Preparing to unpack .../python3.5_3.5.2-2ubuntu0~16.04.4_amd64.deb ...
Unpacking python3.5 (3.5.2-2ubuntu0~16.04.4) ...
Selecting previously unselected package libpython3-stdlib:amd64.
Preparing to unpack .../libpython3-stdlib_3.5.1-3_amd64.deb ...
Unpacking libpython3-stdlib:amd64 (3.5.1-3) ...
Selecting previously unselected package dh-python.
Preparing to unpack .../dh-python_2.20151103ubuntu1.1_all.deb ...
Unpacking dh-python (2.20151103ubuntu1.1) ...
Processing triggers for libc-bin (2.23-0ubuntu10) ...
Setting up libssl1.0.0:amd64 (1.0.2g-1ubuntu4.11) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (Can't locate Term/ReadLine.pm in @INC (you may need to install the Term::ReadLine module) (@INC contains: /etc/perl /usr/local/lib/x86_64-linux-gnu/perl/5.22.1 /usr/local/share/perl/5.22.1 /usr/lib/x86_64-linux-gnu/perl5/5.22 /usr/share/perl5 /usr/lib/x86_64-linux-gnu/perl/5.22 /usr/share/perl/5.22 /usr/local/lib/site_perl /usr/lib/x86_64-linux-gnu/perl-base .) at /usr/share/perl5/Debconf/FrontEnd/Readline.pm line 7.)
debconf: falling back to frontend: Teletype
Setting up libpython3.5-minimal:amd64 (3.5.2-2ubuntu0~16.04.4) ...
Setting up libexpat1:amd64 (2.1.0-7ubuntu0.16.04.3) ...
Setting up python3.5-minimal (3.5.2-2ubuntu0~16.04.4) ...
Setting up python3-minimal (3.5.1-3) ...
Processing triggers for libc-bin (2.23-0ubuntu10) ...
Selecting previously unselected package python3.
(Reading database ... 5744 files and directories currently installed.)
Preparing to unpack .../python3_3.5.1-3_amd64.deb ...
Unpacking python3 (3.5.1-3) ...
Selecting previously unselected package libmagic1:amd64.
Preparing to unpack .../libmagic1_1%3a5.25-2ubuntu1_amd64.deb ...
Unpacking libmagic1:amd64 (1:5.25-2ubuntu1) ...
Selecting previously unselected package file.
Preparing to unpack .../file_1%3a5.25-2ubuntu1_amd64.deb ...
Unpacking file (1:5.25-2ubuntu1) ...
Processing triggers for libc-bin (2.23-0ubuntu10) ...
Setting up mime-support (3.59ubuntu1) ...
Setting up libmpdec2:amd64 (2.4.2-1) ...
Setting up libsqlite3-0:amd64 (3.11.0-1ubuntu1) ...
Setting up libpython3.5-stdlib:amd64 (3.5.2-2ubuntu0~16.04.4) ...
Setting up python3.5 (3.5.2-2ubuntu0~16.04.4) ...
Setting up libpython3-stdlib:amd64 (3.5.1-3) ...
Setting up libmagic1:amd64 (1:5.25-2ubuntu1) ...
Setting up file (1:5.25-2ubuntu1) ...
Setting up python3 (3.5.1-3) ...
running python rtupdate hooks for python3.5...
running python post-rtupdate hooks for python3.5...
Setting up dh-python (2.20151103ubuntu1.1) ...
Processing triggers for libc-bin (2.23-0ubuntu10) ...
Removing intermediate container e58f1082483c
---> 393d9e7b20ec
Step 4/10 : RUN apt-get install -y python-pip python-dev build-essential
---> Running in 715e63459213
Reading package lists...
Building dependency tree...
Reading state information...
The following additional packages will be installed:
binutils bzip2 ca-certificates cpp cpp-5 dpkg-dev fakeroot g++ g++-5 gcc
gcc-5 ifupdown iproute2 isc-dhcp-client isc-dhcp-common
libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl
libasan2 libatm1 libatomic1 libc-dev-bin libc6-dev libcc1-0 libcilkrts5
libdns-export162 libdpkg-perl libexpat1-dev libfakeroot libffi6
libfile-fcntllock-perl libgcc-5-dev libgdbm3 libgmp10 libgomp1
libisc-export160 libisl15 libitm1 liblsan0 libmnl0 libmpc3 libmpfr4 libmpx0
libperl5.22 libpython-all-dev libpython-dev libpython-stdlib libpython2.7
libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib libquadmath0
libstdc++-5-dev libtsan0 libubsan0 libxtables11 linux-libc-dev make manpages
manpages-dev netbase openssl patch perl perl-base perl-modules-5.22 python
python-all python-all-dev python-minimal python-pip-whl python-pkg-resources
python-setuptools python-wheel python2.7 python2.7-dev python2.7-minimal
rename xz-utils
Suggested packages:
binutils-doc bzip2-doc cpp-doc gcc-5-locales debian-keyring g++-multilib
g++-5-multilib gcc-5-doc libstdc++6-5-dbg gcc-multilib autoconf automake
libtool flex bison gdb gcc-doc gcc-5-multilib libgcc1-dbg libgomp1-dbg
libitm1-dbg libatomic1-dbg libasan2-dbg liblsan0-dbg libtsan0-dbg
libubsan0-dbg libcilkrts5-dbg libmpx0-dbg libquadmath0-dbg ppp rdnssd
iproute2-doc resolvconf avahi-autoipd isc-dhcp-client-ddns apparmor
glibc-doc libstdc++-5-doc make-doc man-browser ed diffutils-doc perl-doc
libterm-readline-gnu-perl | libterm-readline-perl-perl python-doc python-tk
python-setuptools-doc python2.7-doc binfmt-support
The following NEW packages will be installed:
binutils build-essential bzip2 ca-certificates cpp cpp-5 dpkg-dev fakeroot
g++ g++-5 gcc gcc-5 ifupdown iproute2 isc-dhcp-client isc-dhcp-common
libalgorithm-diff-perl libalgorithm-diff-xs-perl libalgorithm-merge-perl
libasan2 libatm1 libatomic1 libc-dev-bin libc6-dev libcc1-0 libcilkrts5
libdns-export162 libdpkg-perl libexpat1-dev libfakeroot libffi6
libfile-fcntllock-perl libgcc-5-dev libgdbm3 libgmp10 libgomp1
libisc-export160 libisl15 libitm1 liblsan0 libmnl0 libmpc3 libmpfr4 libmpx0
libperl5.22 libpython-all-dev libpython-dev libpython-stdlib libpython2.7
libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib libquadmath0
libstdc++-5-dev libtsan0 libubsan0 libxtables11 linux-libc-dev make manpages
manpages-dev netbase openssl patch perl perl-modules-5.22 python python-all
python-all-dev python-dev python-minimal python-pip python-pip-whl
python-pkg-resources python-setuptools python-wheel python2.7 python2.7-dev
python2.7-minimal rename xz-utils
The following packages will be upgraded:
perl-base
1 upgraded, 81 newly installed, 0 to remove and 4 not upgraded.
Need to get 85.0 MB of archives.
After this operation, 259 MB of additional disk space will be used.
Get:1 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 perl-base amd64 5.22.1-9ubuntu0.3 [1286 kB]
Get:2 http://archive.ubuntu.com/ubuntu xenial/main amd64 libatm1 amd64 1:2.5.1-1.5 [24.2 kB]
Get:3 http://archive.ubuntu.com/ubuntu xenial/main amd64 libmnl0 amd64 1.0.3-5 [12.0 kB]
Get:4 http://archive.ubuntu.com/ubuntu xenial/main amd64 libgdbm3 amd64 1.8.3-13.1 [16.9 kB]
Get:5 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 perl-modules-5.22 all 5.22.1-9ubuntu0.3 [2646 kB]
Get:6 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libperl5.22 amd64 5.22.1-9ubuntu0.3 [3402 kB]
Get:7 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 perl amd64 5.22.1-9ubuntu0.3 [237 kB]
Get:8 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython2.7-minimal amd64 2.7.12-1ubuntu0~16.04.3 [340 kB]
Get:9 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python2.7-minimal amd64 2.7.12-1ubuntu0~16.04.3 [1261 kB]
Get:10 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-minimal amd64 2.7.12-1~16.04 [28.1 kB]
Get:11 http://archive.ubuntu.com/ubuntu xenial/main amd64 libffi6 amd64 3.2.1-4 [17.8 kB]
Get:12 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython2.7-stdlib amd64 2.7.12-1ubuntu0~16.04.3 [1880 kB]
Get:13 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python2.7 amd64 2.7.12-1ubuntu0~16.04.3 [224 kB]
Get:14 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython-stdlib amd64 2.7.12-1~16.04 [7768 B]
Get:15 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python amd64 2.7.12-1~16.04 [137 kB]
Get:16 http://archive.ubuntu.com/ubuntu xenial/main amd64 libgmp10 amd64 2:6.1.0+dfsg-2 [240 kB]
Get:17 http://archive.ubuntu.com/ubuntu xenial/main amd64 libmpfr4 amd64 3.1.4-1 [191 kB]
Get:18 http://archive.ubuntu.com/ubuntu xenial/main amd64 libmpc3 amd64 1.0.3-1 [39.7 kB]
Get:19 http://archive.ubuntu.com/ubuntu xenial/main amd64 bzip2 amd64 1.0.6-8 [32.7 kB]
Get:20 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 iproute2 amd64 4.3.0-1ubuntu3.16.04.3 [522 kB]
Get:21 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 ifupdown amd64 0.8.10ubuntu1.2 [54.9 kB]
Get:22 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libisc-export160 amd64 1:9.10.3.dfsg.P4-8ubuntu1.10 [153 kB]
Get:23 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libdns-export162 amd64 1:9.10.3.dfsg.P4-8ubuntu1.10 [666 kB]
Get:24 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 isc-dhcp-client amd64 4.3.3-5ubuntu12.10 [224 kB]
Get:25 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 isc-dhcp-common amd64 4.3.3-5ubuntu12.10 [105 kB]
Get:26 http://archive.ubuntu.com/ubuntu xenial/main amd64 libxtables11 amd64 1.6.0-2ubuntu3 [27.2 kB]
Get:27 http://archive.ubuntu.com/ubuntu xenial/main amd64 netbase all 5.3 [12.9 kB]
Get:28 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 openssl amd64 1.0.2g-1ubuntu4.11 [492 kB]
Get:29 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 ca-certificates all 20170717~16.04.1 [168 kB]
Get:30 http://archive.ubuntu.com/ubuntu xenial/main amd64 manpages all 4.04-2 [1087 kB]
Get:31 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 binutils amd64 2.26.1-1ubuntu1~16.04.6 [2311 kB]
Get:32 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libc-dev-bin amd64 2.23-0ubuntu10 [68.7 kB]
Get:33 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 linux-libc-dev amd64 4.4.0-119.143 [845 kB]
Get:34 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libc6-dev amd64 2.23-0ubuntu10 [2079 kB]
Get:35 http://archive.ubuntu.com/ubuntu xenial/main amd64 libisl15 amd64 0.16.1-1 [524 kB]
Get:36 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 cpp-5 amd64 5.4.0-6ubuntu1~16.04.9 [7685 kB]
Get:37 http://archive.ubuntu.com/ubuntu xenial/main amd64 cpp amd64 4:5.3.1-1ubuntu1 [27.7 kB]
Get:38 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libcc1-0 amd64 5.4.0-6ubuntu1~16.04.9 [38.8 kB]
Get:39 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgomp1 amd64 5.4.0-6ubuntu1~16.04.9 [55.0 kB]
Get:40 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libitm1 amd64 5.4.0-6ubuntu1~16.04.9 [27.4 kB]
Get:41 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libatomic1 amd64 5.4.0-6ubuntu1~16.04.9 [8882 B]
Get:42 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libasan2 amd64 5.4.0-6ubuntu1~16.04.9 [264 kB]
Get:43 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 liblsan0 amd64 5.4.0-6ubuntu1~16.04.9 [105 kB]
Get:44 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libtsan0 amd64 5.4.0-6ubuntu1~16.04.9 [244 kB]
Get:45 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libubsan0 amd64 5.4.0-6ubuntu1~16.04.9 [95.2 kB]
Get:46 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libcilkrts5 amd64 5.4.0-6ubuntu1~16.04.9 [40.1 kB]
Get:47 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libmpx0 amd64 5.4.0-6ubuntu1~16.04.9 [9774 B]
Get:48 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libquadmath0 amd64 5.4.0-6ubuntu1~16.04.9 [131 kB]
Get:49 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libgcc-5-dev amd64 5.4.0-6ubuntu1~16.04.9 [2242 kB]
Get:50 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 gcc-5 amd64 5.4.0-6ubuntu1~16.04.9 [8650 kB]
Get:51 http://archive.ubuntu.com/ubuntu xenial/main amd64 gcc amd64 4:5.3.1-1ubuntu1 [5244 B]
Get:52 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libstdc++-5-dev amd64 5.4.0-6ubuntu1~16.04.9 [1427 kB]
Get:53 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 g++-5 amd64 5.4.0-6ubuntu1~16.04.9 [8333 kB]
Get:54 http://archive.ubuntu.com/ubuntu xenial/main amd64 g++ amd64 4:5.3.1-1ubuntu1 [1504 B]
Get:55 http://archive.ubuntu.com/ubuntu xenial/main amd64 make amd64 4.1-6 [151 kB]
Get:56 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libdpkg-perl all 1.18.4ubuntu1.4 [195 kB]
Get:57 http://archive.ubuntu.com/ubuntu xenial/main amd64 xz-utils amd64 5.1.1alpha+20120614-2ubuntu2 [78.8 kB]
Get:58 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 patch amd64 2.7.5-1ubuntu0.16.04.1 [90.5 kB]
Get:59 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 dpkg-dev all 1.18.4ubuntu1.4 [584 kB]
Get:60 http://archive.ubuntu.com/ubuntu xenial/main amd64 build-essential amd64 12.1ubuntu2 [4758 B]
Get:61 http://archive.ubuntu.com/ubuntu xenial/main amd64 libfakeroot amd64 1.20.2-1ubuntu1 [25.5 kB]
Get:62 http://archive.ubuntu.com/ubuntu xenial/main amd64 fakeroot amd64 1.20.2-1ubuntu1 [61.8 kB]
Get:63 http://archive.ubuntu.com/ubuntu xenial/main amd64 libalgorithm-diff-perl all 1.19.03-1 [47.6 kB]
Get:64 http://archive.ubuntu.com/ubuntu xenial/main amd64 libalgorithm-diff-xs-perl amd64 0.04-4build1 [11.0 kB]
Get:65 http://archive.ubuntu.com/ubuntu xenial/main amd64 libalgorithm-merge-perl all 0.08-3 [12.0 kB]
Get:66 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libexpat1-dev amd64 2.1.0-7ubuntu0.16.04.3 [115 kB]
Get:67 http://archive.ubuntu.com/ubuntu xenial/main amd64 libfile-fcntllock-perl amd64 0.22-3 [32.0 kB]
Get:68 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython2.7 amd64 2.7.12-1ubuntu0~16.04.3 [1070 kB]
Get:69 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython2.7-dev amd64 2.7.12-1ubuntu0~16.04.3 [27.8 MB]
Get:70 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython-dev amd64 2.7.12-1~16.04 [7840 B]
Get:71 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 libpython-all-dev amd64 2.7.12-1~16.04 [1006 B]
Get:72 http://archive.ubuntu.com/ubuntu xenial/main amd64 manpages-dev all 4.04-2 [2048 kB]
Get:73 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-all amd64 2.7.12-1~16.04 [996 B]
Get:74 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python2.7-dev amd64 2.7.12-1ubuntu0~16.04.3 [276 kB]
Get:75 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-dev amd64 2.7.12-1~16.04 [1186 B]
Get:76 http://archive.ubuntu.com/ubuntu xenial-updates/main amd64 python-all-dev amd64 2.7.12-1~16.04 [1016 B]
Get:77 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 python-pip-whl all 8.1.1-2ubuntu0.4 [1110 kB]
Get:78 http://archive.ubuntu.com/ubuntu xenial-updates/universe amd64 python-pip all 8.1.1-2ubuntu0.4 [144 kB]
Get:79 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-pkg-resources all 20.7.0-1 [108 kB]
Get:80 http://archive.ubuntu.com/ubuntu xenial/main amd64 python-setuptools all 20.7.0-1 [169 kB]
Get:81 http://archive.ubuntu.com/ubuntu xenial/universe amd64 python-wheel all 0.29.0-1 [48.0 kB]
Get:82 http://archive.ubuntu.com/ubuntu xenial/main amd64 rename all 0.20-4 [12.0 kB]
debconf: delaying package configuration, since apt-utils is not installed
Fetched 85.0 MB in 42s (1995 kB/s)
(Reading database ... 5787 files and directories currently installed.)
Preparing to unpack .../perl-base_5.22.1-9ubuntu0.3_amd64.deb ...
Unpacking perl-base (5.22.1-9ubuntu0.3) over (5.22.1-9ubuntu0.2) ...
Setting up perl-base (5.22.1-9ubuntu0.3) ...
Selecting previously unselected package libatm1:amd64.
(Reading database ... 5787 files and directories currently installed.)
Preparing to unpack .../libatm1_1%3a2.5.1-1.5_amd64.deb ...
Unpacking libatm1:amd64 (1:2.5.1-1.5) ...
Selecting previously unselected package libmnl0:amd64.
Preparing to unpack .../libmnl0_1.0.3-5_amd64.deb ...
Unpacking libmnl0:amd64 (1.0.3-5) ...
Selecting previously unselected package libgdbm3:amd64.
Preparing to unpack .../libgdbm3_1.8.3-13.1_amd64.deb ...
Unpacking libgdbm3:amd64 (1.8.3-13.1) ...
Selecting previously unselected package perl-modules-5.22.