Advertisement
Guest User

Untitled

a guest
May 2nd, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.65 KB | None | 0 0
  1. web:
  2. image: hitalos/laravel:latest
  3. ports:
  4. - 80:80
  5. volumes:
  6. - ./:/var/www
  7. # If you don't want to use default 'artisan serve' command, edit and uncomment the line below.
  8. command: php -S 0.0.0.0:80 -t public public/index.php
  9. links:
  10. - db
  11. environment:
  12. DB_HOST: db
  13. DB_DATABASE: testneticdb
  14. DB_USERNAME: root
  15. DB_PASSWORD: testnetic
  16. DB_CONNECTION: mysql
  17. db:
  18. image: mysql:5.7
  19. environment:
  20. # with mysql
  21. MYSQL_DATABASE: testneticdb
  22. MYSQL_USER: testnetic
  23. MYSQL_PASSWORD: testnetic
  24. MYSQL_ROOT_PASSWORD: testnetic
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement