Guest User

Untitled

a guest
Apr 23rd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. version: '2'
  2. services:
  3. app:
  4. depends_on:
  5. - composer
  6. image: php:7.2-fpm
  7. command: php -S 0.0.0.0:8000 /app/public/index.php
  8. ports:
  9. - "8000:8000"
  10. volumes:
  11. - .:/app
  12.  
  13. composer:
  14. image: composer
  15. command: install
  16. volumes:
  17. - .:/app
Add Comment
Please, Sign In to add comment