Guest User

Untitled

a guest
Aug 28th, 2018
250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. web:
  2. image: tutum/apache-php
  3. ports:
  4. - "80:80"
  5. links:
  6. - db
  7. volumes:
  8. - $PWD:/app
  9.  
  10. db:
  11. image: mysql
  12. environment:
  13. - MYSQL_ROOT_PASSWORD= my-secret-pw
  14. - MYSQL_DATABASE= lamp
  15. - MYSQL_USER= lamp_user
  16. - MYSQL_PASSWORD= lamp_pass
  17. ports:
  18. - "3306:3306"
Add Comment
Please, Sign In to add comment