Advertisement
Guest User

Docker3

a guest
Nov 17th, 2019
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.26 KB | None | 0 0
  1. C:\Users\Admin\Documents\Programming\DSXT\docker-bitcoid>docker build -t bitcoind-test .
  2. Sending build context to Docker daemon 7.168kB
  3. Step 1/12 : FROM ubuntu:16.04
  4. ---> 5f2bf26e3524
  5. Step 2/12 : RUN apt-get update
  6. ---> Using cache
  7. ---> 0ce13b0dd195
  8. Step 3/12 : RUN apt-get install --yes software-properties-common
  9. ---> Using cache
  10. ---> 6bd8f9ac5eb1
  11. Step 4/12 : RUN add-apt-repository --yes ppa:bitcoin/bitcoin
  12. ---> Using cache
  13. ---> fe7836a7ab06
  14. Step 5/12 : RUN apt-get update
  15. ---> Using cache
  16. ---> bb429c48e3b4
  17. Step 6/12 : RUN apt-get install --yes bitcoind
  18. ---> Using cache
  19. ---> 2b6da9834441
  20. Step 7/12 : ADD . /home/bitcoind-testnet
  21. ---> Using cache
  22. ---> 372dde83f54f
  23. Step 8/12 : COPY entrypoint.sh /home/bitcoind-testnet
  24. ---> Using cache
  25. ---> abe55310ffc3
  26. Step 9/12 : EXPOSE 18443
  27. ---> Using cache
  28. ---> f544a64818e3
  29. Step 10/12 : EXPOSE 18444
  30. ---> Using cache
  31. ---> 5037ee4ab96c
  32. Step 11/12 : ENTRYPOINT ["/home/bitcoind-testnet/entrypoint.sh"]
  33. ---> Using cache
  34. ---> de1e50b09769
  35. Step 12/12 : CMD ["/bin/bash"]
  36. ---> Using cache
  37. ---> 5101b3cdb39f
  38. Successfully built 5101b3cdb39f
  39. Successfully tagged bitcoind-test:latest
  40. SECURITY WARNING: You are building a Docker image from Windows against a non-Windows Docker host. All files and directories added to build context will have '-rwxr-xr-x' permissions. It is recommended to double check and reset permissions for sensitive files and directories.
  41.  
  42. C:\Users\Admin\Documents\Programming\DSXT\docker-bitcoid>docker container ls --all
  43. CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
  44. c0ba77c084fd dc31df299802 "/bin/sh -c 'bitcoin…" 2 hours ago Exited (1) 2 hours ago vigilant_hellman
  45. 933a257562fa 51f5ca216f1c "/bin/sh -c 'bitcoin…" 4 hours ago Exited (1) 4 hours ago fervent_lamport
  46. 799b7e0c869f bf62d03ddfb6 "/bin/sh -c 'bitcoin…" 4 hours ago Exited (127) 4 hours ago great_ride
  47. 8b2f71e8984c 03e3cb46ca90 "/bin/sh -c 'bitcoin…" 4 hours ago Exited (1) 4 hours ago vigilant_perlman
  48. b3dc2d0fa5e8 51f5ca216f1c "/bin/sh -c 'bitcoin…" 4 hours ago Exited (1) 4 hours ago trusting_mclean
  49. 90d163c9986f 8cc74820c3b4 "/bin/sh -c 'alice_b…" 4 hours ago Exited (127) 4 hours ago epic_shannon
  50. fc1a0e560535 feef830c6d7f "/bin/sh -c 'alice_b…" 4 hours ago Exited (127) 4 hours ago blissful_khayyam
  51. d5d655d7c6c4 b9c020210dbd "/bin/sh -c 'alice_b…" 4 hours ago Exited (127) 4 hours ago adoring_kirch
  52. 4defe628f6b6 771b4d4d0f0a "/bin/sh -c 'alice_b…" 4 hours ago Exited (127) 4 hours ago fervent_yalow
  53. b059697e4d0d 70614e4ce2f6 "/bin/sh -c 'alice_b…" 4 hours ago Exited (127) 4 hours ago tender_cartwright
  54. 56123fdc62bc 20638229d43f "/bin/sh -c 'alice_b…" 4 hours ago Exited (127) 4 hours ago elastic_pascal
  55. 762bdb949963 20638229d43f "/bin/sh -c 'alice_b…" 4 hours ago Exited (127) 4 hours ago awesome_diffie
  56. b5a79ff24dc6 ef523f6bdca8 "/bin/sh -c 'bitcoin…" 4 hours ago Exited (1) 4 hours ago gracious_sinoussi
  57. 47f596296e0e 81c7840b03d5 "/bin/sh -c 'bitcoin…" 4 hours ago Exited (1) 4 hours ago angry_hamilton
  58. a959a6eb1a3d b2bc21b01793 "/bin/sh -c 'bitcoin…" 4 hours ago Exited (127) 4 hours ago dreamy_clarke
  59. 488083affbf9 0c461941d139 "/bin/sh -c 'sudo al…" 4 hours ago Exited (127) 4 hours ago priceless_brahmagupta
  60. bfebdad73ace e7796468d609 "/bin/sh -c 'sudo al…" 5 hours ago Exited (127) 5 hours ago affectionate_hellman
  61. 08d24124b9c1 d7d7f54017e3 "/bin/sh -c 'alice_d…" 5 hours ago Exited (126) 5 hours ago jovial_mendeleev
  62. 6f1f2bf67995 355e6049d16f "/bin/sh -c 'export …" 5 hours ago Exited (2) 5 hours ago priceless_bartik
  63. dcb3efa11fd2 ubuntu "/bin/bash" 3 days ago Exited (255) 2 days ago thirsty_mahavira
  64. b44ef5b9e5b1 ubuntu "/bin/bash" 3 days ago Exited (255) 2 days ago hardcore_keldysh
  65. f14056a930da bitcoinpaygate/regtest-bitcoind "/entrypoint.sh /bin…" 10 days ago Exited (1) 10 days ago bold_mcnulty
  66.  
  67. C:\Users\Admin\Documents\Programming\DSXT\docker-bitcoid>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement