Guest User

Untitled

a guest
Apr 17th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. # Version de Docker compose
  2. version: "2"
  3.  
  4. services:
  5. web:
  6. image: library/php:7.2-apache
  7. volumes:
  8. - ./:/var/www
  9. ports:
  10. - "82:80"
  11. db:
  12. image: mysql
  13. environment:
  14. MYSQL_USER: "antoine"
  15. MYSQL_ROOT_PASSWORD: "q1w2e3r4"
  16. MYSQL_DATABASE: "myAwesomeDb"
  17. posts:
  18. - "6666:3306"
  19.  
  20. # "MyComputer:TheContainerport"
Add Comment
Please, Sign In to add comment