Guest User

Untitled

a guest
Oct 22nd, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.21 KB | None | 0 0
  1. web_1 | => Booting Unicorn
  2. web_1 | => Rails 3.2.22.5 application starting in development on http://0.0.0.0:3000
  3. web_1 | => Call with -d to detach
  4. web_1 | => Ctrl-C to shutdown server
  5. web_1 | Exiting
  6.  
  7. compose.cli.verbose_proxy.proxy_callable: docker wait <- (u'a03b58f2116698d670f86155cd68605a148143b83ee3351a5e5a4808d682afc9')
  8. compose.cli.verbose_proxy.proxy_callable: docker inspect_container <- (u'a03b58f2116698d670f86155cd68605a148143b83ee3351a5e5a4808d682afc9')
  9. urllib3.connectionpool._make_request: http://localhost:None "POST /v1.25/containers/a03b58f2116698d670f86155cd68605a148143b83ee3351a5e5a4808d682afc9/wait HTTP/1.1" 200 30
  10. compose.cli.verbose_proxy.proxy_callable: docker wait -> 1
  11. urllib3.connectionpool._make_request: http://localhost:None "GET /v1.25/containers/a03b58f2116698d670f86155cd68605a148143b83ee3351a5e5a4808d682afc9/json HTTP/1.1" 200 None
  12. compose.cli.verbose_proxy.proxy_callable: docker inspect_container -> {u'AppArmorProfile': u'docker-default',
  13. u'Args': [u'redis:6379',
  14. u'--',
  15. u'./wait-for-it.sh',
  16. u'postgres:5432',
  17. u'--',
  18. u'bundle',
  19. u'exec',
  20. u'rails',
  21. u's',
  22.  
  23. version: '3'
  24. services:
  25. memcached:
  26. image: memcached:1.5.2-alpine
  27. restart: always
  28. ports:
  29. - "11211:11211"
  30.  
  31. postgres:
  32. image: postgres:9.4-alpine
  33. restart: always
  34. volumes:
  35. - ~/.myapp-data/postgres:/var/lib/postgresql/data
  36. ports:
  37. - "5432:5432"
  38. environment:
  39. - POSTGRES_DB=myapp_development
  40. - POSTGRES_USER=default
  41. - POSTGRES_PASSWORD=secret
  42.  
  43. redis:
  44. image: redis:3.2.0-alpine
  45. restart: always
  46. volumes:
  47. - ~/.myapp-data/redis:/data
  48. ports:
  49. - "6379:6379"
  50.  
  51. web:
  52. build:
  53. context: .
  54. dockerfile: "Dockerfile-dev"
  55. stdin_open: true
  56. tty: true
  57. command: ./wait-for-it.sh redis:6379 -- ./wait-for-it.sh postgres:5432 -- bundle exec rails s -p 3000 -b '0.0.0.0'
  58. volumes:
  59. - .:/opt/apps/myapp
  60. depends_on:
  61. - memcached
  62. - redis
  63. - postgres
  64. ports:
  65. - "80:3000"
  66. env_file:
  67. - .env
  68. extra_hosts:
  69. - "api.myapp:127.0.0.1"
  70. - "api.getmyapp:127.0.0.1"
  71. - "my.app:127.0.0.1"
Add Comment
Please, Sign In to add comment