Advertisement
Guest User

Untitled

a guest
Sep 17th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. version: '2'
  2. services:
  3. debug:
  4. image: phpstorm/php-71-apache-xdebug
  5. ports:
  6. - "8081:80"
  7. volumes:
  8. - ./workshop/06_Debugging:/var/www/html
  9. environment:
  10. #change the line below with your IP address that is visible from Docker
  11. #See README for instruction about how to get the right IP address
  12. XDEBUG_CONFIG: remote_host=10.0.75.1
  13. sftp:
  14. image: phpstorm/sftp-server
  15. ports:
  16. - "2022:22"
  17. volumes:
  18. - C:/temp:/home/jetbrains/upload
  19. command: jetbrains:jetbrains:1001
  20. mysql:
  21. image: phpstorm/mysql
  22. ports:
  23. - "33056:3306"
  24. volumes:
  25. - ./data:/var/lib/mysql
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement