Advertisement
Guest User

Untitled

a guest
Sep 10th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. version: '3.1'
  2. services:
  3. web:
  4. build: .
  5. volumes:
  6. - ./www/:/var/www/app
  7. ports:
  8. - 8000:8000
  9. links:
  10. - db
  11. command: php artisan --host=0.0.0.0 ---port=8000
  12. db:
  13. image: mysql
  14. environment:
  15. MYSQL_DATABASE: admin_mahidol
  16. MYSQL_USER: admin_mahidol
  17. MYSQL_PASSWORD: pp6321
  18. MYSQL_ROOT_PASSWORD: pp6321
  19. volumes:
  20. - ./db/:/var/lib/mysql
  21. myadmin:
  22. image: phpmyadmin/phpmyadmin
  23. ports:
  24. - 4080:80
  25. links:
  26. - db
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement