Guest User

Untitled

a guest
Jun 26th, 2018
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.99 KB | None | 0 0
  1. ---
  2. platform: linux
  3.  
  4. image_resource:
  5. type: docker-image
  6. source: {repository: busybox}
  7.  
  8. run:
  9. path: echo
  10. args: [hello world]
  11.  
  12. Containers: 2
  13. Running: 2
  14. Paused: 0
  15. Stopped: 0
  16. Images: 3
  17. Server Version: 1.13.0
  18. Storage Driver: aufs
  19. Root Dir: /var/lib/docker/aufs
  20. Backing Filesystem: extfs
  21. Dirs: 27
  22. Dirperm1 Supported: true
  23. Logging Driver: json-file
  24. Cgroup Driver: cgroupfs
  25. Plugins:
  26. Volume: local
  27. Network: bridge host ipvlan macvlan null overlay
  28. Swarm: inactive
  29. Runtimes: runc
  30. Default Runtime: runc
  31. Init Binary: docker-init
  32. containerd version: 03e5862ec0d8d3b3f750e19fca3ee367e13c090e
  33. runc version: 2f7393a47307a16f8cee44a37b262e8b81021e3e
  34. init version: 949e6fa
  35. Security Options:
  36. seccomp
  37. Profile: default
  38. Kernel Version: 4.9.4-moby
  39. Operating System: Alpine Linux v3.5
  40. OSType: linux
  41. Architecture: x86_64
  42. CPUs: 2
  43. Total Memory: 1.934 GiB
  44. Name: moby
  45. ID: NTIN:LYIR:TSZR:FZCM:DWRV:O7OW:3H7H:D365:53CD:TEL6:26C2:YMLV
  46. Docker Root Dir: /var/lib/docker
  47. Debug Mode (client): false
  48. Debug Mode (server): true
  49. File Descriptors: 29
  50. Goroutines: 34
  51. System Time: 2018-06-26T16:46:58.4688726Z
  52. EventsListeners: 0
  53. Registry: https://index.docker.io/v1/
  54. Experimental: true
  55. Insecure Registries:
  56. 127.0.0.0/8
  57. Live Restore Enabled: false
  58.  
  59. services:
  60. concourse-db:
  61. image: postgres
  62. environment:
  63. - POSTGRES_DB=concourse
  64. - POSTGRES_PASSWORD=concourse_pass
  65. - POSTGRES_USER=concourse_user
  66. - PGDATA=/database
  67.  
  68. concourse:
  69. image: concourse/concourse:3.14.1
  70. command: quickstart
  71. privileged: true
  72. depends_on: [concourse-db]
  73. ports: ["8080:8080"]
  74. environment:
  75. - CONCOURSE_POSTGRES_HOST=concourse-db
  76. - CONCOURSE_POSTGRES_USER=concourse_user
  77. - CONCOURSE_POSTGRES_PASSWORD=concourse_pass
  78. - CONCOURSE_POSTGRES_DATABASE=concourse
  79. - CONCOURSE_EXTERNAL_URL
  80. - CONCOURSE_ADD_LOCAL_USER=test:$$2a$$10$$0W9/ilCpYXY/yCPpaOD.6eCrGda/fnH3D4lhsw1Mze0WTID5BuiTW
  81. - CONCOURSE_MAIN_TEAM_ALLOW_ALL_USERS=true
  82. - CONCOURSE_WORKER_GARDEN_NETWORK
  83. - CONCOURSE_NO_REALLY_I_DONT_WANT_ANY_AUTH=true
Add Comment
Please, Sign In to add comment